Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Celebrity Deathmatch (VB.NET vs C#)

Celebrity Deathmatch (VB.NET vs C#)

Scheduled Pinned Locked Moved The Lounge
csharphtmlcssvisual-studio
80 Posts 24 Posters 49 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A AspDotNetDev

    C# Has !=

    if (x != null) { /* xify */ }

    [WikiLeaks Cablegate Cables]

    P Offline
    P Offline
    PIEBALDconsult
    wrote on last edited by
    #29

    Which ain't the same thing.

    _ A 2 Replies Last reply
    0
    • P PIEBALDconsult

      Which ain't the same thing.

      _ Offline
      _ Offline
      _Damian S_
      wrote on last edited by
      #30

      IsToo... IsNot... rofl... :laugh:

      Reminiscing just isn't what it used to be!! If you like cars, check out the Booger Mobile blog | If you feel generous - make a donation to Camp Quality!!

      1 Reply Last reply
      0
      • A AspDotNetDev

        Nemanja Trifunovic wrote:

        You write code once and read it many times.

        By that same reasoning, you learn a language once (well, can take a while for things to sink in) and you can develop software for many years based on that knowledge. It is faster to read "{}" than "Then End If", so why not go for the faster version since it is the one that will lead to the least overall time spent reading if-statements?

        [WikiLeaks Cablegate Cables]

        N Offline
        N Offline
        Nemanja Trifunovic
        wrote on last edited by
        #31

        AspDotNetDev wrote:

        It is faster to read "{}" than "Then End If",

        Kind of. End If closes the block after If and that's it. To get what } does you need to be aware of the scope - sometimes even to scroll up a couple of pages. Sure, a good editor helps, but as far as a language goes I like End If better.

        utf8-cpp

        A P 2 Replies Last reply
        0
        • P PIEBALDconsult

          Yeah, the "C way" is better. It's much more flexible. See here for an example.[^] Also, several times I have changed an if to a while -- in VB you have to change both ends. X| Plus, using more symbols and fewer keywords makes C somewhat less Anglo-centric.

          modified on Monday, March 28, 2011 11:52 PM

          N Offline
          N Offline
          Nemanja Trifunovic
          wrote on last edited by
          #32

          PIEBALDconsult wrote:

          See here for an example.[^]

          Would you double-check that link? I saw nothing related to your arguments there (using Chrome 10 on Fedora Linux).

          PIEBALDconsult wrote:

          Plus, using more symbols and fewer keywords makes C somewhat less Anglo-centric.

          Meh, as a Cyrillic-writing Serbian I'll take Anglo-centric any time over cryptic symbols. In fact, my ideal language would have no operators at all - not even mathematical ones.

          utf8-cpp

          A P 2 Replies Last reply
          0
          • N Nemanja Trifunovic

            AspDotNetDev wrote:

            It is faster to read "{}" than "Then End If",

            Kind of. End If closes the block after If and that's it. To get what } does you need to be aware of the scope - sometimes even to scroll up a couple of pages. Sure, a good editor helps, but as far as a language goes I like End If better.

            utf8-cpp

            A Offline
            A Offline
            AspDotNetDev
            wrote on last edited by
            #33

            Very good point. Though, if the code is written in small enough methods and the editor is good enough (like Visual Studio), clicking on a closing curly brace will highlight the corresponding opening curly brace and you can see it without scrolling. If the code is not small enough, then you'd have to scroll anyway in either language and you could easily get lost. Come to think if it, would be a neat IDE feature if you could right click on "}" or "End If" and select "Go To Start".

            [WikiLeaks Cablegate Cables]

            1 Reply Last reply
            0
            • P PIEBALDconsult

              Which ain't the same thing.

              A Offline
              A Offline
              AspDotNetDev
              wrote on last edited by
              #34

              Ah. Right you are.

              [WikiLeaks Cablegate Cables]

              1 Reply Last reply
              0
              • N Nemanja Trifunovic

                PIEBALDconsult wrote:

                See here for an example.[^]

                Would you double-check that link? I saw nothing related to your arguments there (using Chrome 10 on Fedora Linux).

                PIEBALDconsult wrote:

                Plus, using more symbols and fewer keywords makes C somewhat less Anglo-centric.

                Meh, as a Cyrillic-writing Serbian I'll take Anglo-centric any time over cryptic symbols. In fact, my ideal language would have no operators at all - not even mathematical ones.

                utf8-cpp

                A Offline
                A Offline
                AspDotNetDev
                wrote on last edited by
                #35

                Nemanja Trifunovic wrote:

                my ideal language would have no operators at all - not even mathematical ones

                Your wish is my command. :)

                [WikiLeaks Cablegate Cables]

                1 Reply Last reply
                0
                • N Nemanja Trifunovic

                  PIEBALDconsult wrote:

                  See here for an example.[^]

                  Would you double-check that link? I saw nothing related to your arguments there (using Chrome 10 on Fedora Linux).

                  PIEBALDconsult wrote:

                  Plus, using more symbols and fewer keywords makes C somewhat less Anglo-centric.

                  Meh, as a Cyrillic-writing Serbian I'll take Anglo-centric any time over cryptic symbols. In fact, my ideal language would have no operators at all - not even mathematical ones.

                  utf8-cpp

                  P Offline
                  P Offline
                  PIEBALDconsult
                  wrote on last edited by
                  #36

                  Fixed, thanks.

                  A 1 Reply Last reply
                  0
                  • A AspDotNetDev

                    PIEBALDconsult wrote:

                    in VB to have to change both ends

                    I forgot about that! I ran into that today, actually. The most annoying one for me is "Function"/"Sub". Why the heck should I have to annotate that difference? They're both methods. Let the bloody compiler figure out if it returns something or not. I find it strange that VB.NET doesn't have "Begin Grouping" and "End Grouping" rather than parentheses. :rolleyes:

                    PIEBALDconsult wrote:

                    Plus, using more symbols and fewer keywords makes C somewhat less Anglo-centric.

                    Good point!

                    [WikiLeaks Cablegate Cables]

                    P Offline
                    P Offline
                    PIEBALDconsult
                    wrote on last edited by
                    #37

                    AspDotNetDev wrote:

                    "Function"/"Sub".

                    Yeah, and class/module too.

                    1 Reply Last reply
                    0
                    • C cechode

                      this would be a linq version

                              (from f in new List<Func<bool>>() { Step1, Step2, Step3 }
                               where !f()
                               select 0).FirstOrDefault();
                      

                      but you are still limited to the same function signature in the vb version it could be

                      case step1(mystring)
                      case step2(myint, mystring)
                      .....

                      modified on Monday, March 28, 2011 6:56 PM

                      A Offline
                      A Offline
                      AspDotNetDev
                      wrote on last edited by
                      #38

                      I figured out a shorter version that makes use of LINQ. I posted a tip/trick about it.

                      [WikiLeaks Cablegate Cables]

                      1 Reply Last reply
                      0
                      • N Nish Nishant

                        VB.NET supports by-ref extension methods. As of 4.0, C# does not.

                        Regards, Nish


                        Are you addicted to CP? If so, check this out: The Code Project Forum Analyzer : Find out how much of a life you don't have! My technology blog: voidnish.wordpress.com

                        P Offline
                        P Offline
                        PIEBALDconsult
                        wrote on last edited by
                        #39

                        Well the VB designers got Extension Methods right, the C# designers really screwed up big time. Extension Methods should be by attribute in both languages.

                        1 Reply Last reply
                        0
                        • P PIEBALDconsult

                          Fixed, thanks.

                          A Offline
                          A Offline
                          AspDotNetDev
                          wrote on last edited by
                          #40

                          Doesn't look fixed to me. Methinks you need to get the permalink from whatever message you are linking to.

                          [WikiLeaks Cablegate Cables]

                          P 1 Reply Last reply
                          0
                          • N Nemanja Trifunovic

                            AspDotNetDev wrote:

                            Maybe "End Sub" makes the code easier to read to somebody not initiated with the language, but it doesn't make the code any easier to write

                            Which is a reasonable trade-off. You write code once and read it many times. Besides, with any decent editor, it is a non-issue.

                            AspDotNetDev wrote:

                            if (true)
                            {

                            I see unnecessary and confusing symbols here. For instance in Go, it would be something like:

                            if true {

                            Or (even better) in ML:

                            if true then

                            utf8-cpp

                            P Offline
                            P Offline
                            PIEBALDconsult
                            wrote on last edited by
                            #41

                            Nemanja Trifunovic wrote:

                            AspDotNetDev wrote:

                            if (true)
                            {

                            If I had my way (and I don't), the braces would be mandatory and the parentheses would be optional.

                            1 Reply Last reply
                            0
                            • N Nemanja Trifunovic

                              AspDotNetDev wrote:

                              It is faster to read "{}" than "Then End If",

                              Kind of. End If closes the block after If and that's it. To get what } does you need to be aware of the scope - sometimes even to scroll up a couple of pages. Sure, a good editor helps, but as far as a language goes I like End If better.

                              utf8-cpp

                              P Offline
                              P Offline
                              PIEBALDconsult
                              wrote on last edited by
                              #42

                              See what happens when you remove all the newlines. Readable?

                              1 Reply Last reply
                              0
                              • A AspDotNetDev

                                Doesn't look fixed to me. Methinks you need to get the permalink from whatever message you are linking to.

                                [WikiLeaks Cablegate Cables]

                                P Offline
                                P Offline
                                PIEBALDconsult
                                wrote on last edited by
                                #43

                                My post "Here's something else VB can't do".

                                A 1 Reply Last reply
                                0
                                • P PIEBALDconsult

                                  My post "Here's something else VB can't do".

                                  A Offline
                                  A Offline
                                  AspDotNetDev
                                  wrote on last edited by
                                  #44

                                  Ah, link.

                                  [WikiLeaks Cablegate Cables]

                                  1 Reply Last reply
                                  0
                                  • A AspDotNetDev

                                    There hasn't been a good "why language X sucks and language Y is better" thread in a good while, so I thought I'd start one. Unlike most, however, this one has rules. I will post a reason C# is better than VB.NET and somebody reply with a reason VB.NET is better than C#. I (or somebody else) will then reply to that message stating another reason C# is better. And so on. Also, you must show code examples (when appropriate). I'll start. C# Is Less Verbose

                                    Public Sub Something()
                                    ' VB.NET...
                                    End Sub

                                    public void Something()
                                    {
                                    // C#...
                                    }

                                    You're turn (post why VB.NET is better than C#). :)

                                    [WikiLeaks Cablegate Cables]

                                    M Offline
                                    M Offline
                                    Michael Kingsford Gray
                                    wrote on last edited by
                                    #45

                                    VB is better because I use it more often, and have more experience with it than C#. Do I get points for honesty?

                                    K 1 Reply Last reply
                                    0
                                    • A AspDotNetDev

                                      There hasn't been a good "why language X sucks and language Y is better" thread in a good while, so I thought I'd start one. Unlike most, however, this one has rules. I will post a reason C# is better than VB.NET and somebody reply with a reason VB.NET is better than C#. I (or somebody else) will then reply to that message stating another reason C# is better. And so on. Also, you must show code examples (when appropriate). I'll start. C# Is Less Verbose

                                      Public Sub Something()
                                      ' VB.NET...
                                      End Sub

                                      public void Something()
                                      {
                                      // C#...
                                      }

                                      You're turn (post why VB.NET is better than C#). :)

                                      [WikiLeaks Cablegate Cables]

                                      H Offline
                                      H Offline
                                      hairy_hats
                                      wrote on last edited by
                                      #46

                                      AspDotNetDev wrote:

                                      You're turn

                                      Am I? ;P

                                      R 3 Replies Last reply
                                      0
                                      • A AspDotNetDev

                                        That's pretty neat! But you can actually get pretty close to that in C#:

                                        var steps = new List<Func<bool>> { Step1, Step2, Step3 };
                                        foreach (var step in steps)
                                        {
                                        if (!step()) break;
                                        }

                                        And if you create this helper function:

                                        void DoEach(params Func<bool>[] steps)
                                        {
                                        foreach (var step in steps)
                                        {
                                        if (!step()) break;
                                        }
                                        }

                                        You can shorten that code even further:

                                        DoEach(new Func<bool>[] {
                                        Step1,
                                        Step2,
                                        Step3
                                        });

                                        Got to love delegate inference! Not sure, but I think there's something in LINQ that does something like this as well. Can't be bothered to try and find it now though.

                                        [WikiLeaks Cablegate Cables]

                                        T Offline
                                        T Offline
                                        the Kris
                                        wrote on last edited by
                                        #47

                                        This can much shorter! Step1() && Step2() && Step3();

                                        A K 2 Replies Last reply
                                        0
                                        • N Nish Nishant

                                          Oh sorry, it's so well known that I didn't think you'd need code to back it up :-) See this blog post: http://blog.gadodia.net/extension-methods-in-vbnet-and-c/[^]

                                          Regards, Nish


                                          Are you addicted to CP? If so, check this out: The Code Project Forum Analyzer : Find out how much of a life you don't have! My technology blog: voidnish.wordpress.com

                                          R Offline
                                          R Offline
                                          Rob Grainger
                                          wrote on last edited by
                                          #48

                                          Nishant Sivakumar wrote:

                                          Oh sorry, it's so well known that I didn't think you'd need code to back it up

                                          maybe in your part of the world - I've been using C# and VB for years but never came across this. Why you'd want to do it in a well designed program is questionable, but maybe there is a good reason somewhere.

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups