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. Other Discussions
  3. The Weird and The Wonderful
  4. 21,662

21,662

Scheduled Pinned Locked Moved The Weird and The Wonderful
csharpwinformstools
18 Posts 6 Posters 0 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

    I just asked a coworker where in TFS the source code is for a utility that is heavily used in our department. He said it wasn't, but he'd email me the source code. :(( It is a Windows Forms application and there are several forms, but there is one primary form. I looked at the VB (.Net, thankfully) code for that form. I wish I hadn't... 21,662 lines of code, just for that one form. :(( Now, I just have to figure out what Form2, Form3, Form4, Form5, Form6, and Form7 do. :((

    Somebody in an online forum wrote:

    INTJs never really joke. They make a point. The joke is just a gift wrapper.

    T Offline
    T Offline
    TorstenH
    wrote on last edited by
    #9

    not even 21.000 lines of code - but 21.000 lines of VB-code. that's even more painful.

    regards Torsten I never finish anyth...

    1 Reply Last reply
    0
    • Sander RosselS Sander Rossel

      That's looking pretty decent. I must admit I never use Constants myself. But looking at this they are actually pretty handy. My code would say If count = 1 Then... And I often find myself commenting what 1 is or why we would have it. I am also a big fan of XML comments. Especially when I am developing some Class Library for my company to use (and I do that from time to time). I wouldn't put any of the comments in the GetChildrenDescription Method though. It looks all pretty self explanatory to me ;)

      It's an OO world.

      public class Naerling : Lazy<Person>{}

      B Offline
      B Offline
      BobJanova
      wrote on last edited by
      #10

      The HIGHLANDER one is a bit of a joke, I think, and generally for switching between one and many it's fine to use a literal 1 – it's never going to be anything different and logically it could not be. But yes, generally, constants are good, particularly if you otherwise write a comment.

      const WOTSITS_PER_THING = 13;
      ...
      function Things(){
      var wotsits = getWotsitNumberFromSomewhere();
      return {things: wotsits / WOTSITS_PER_THING; leftover: wotsits % WOTSITS_PER_THING };
      }

      ... is much better than

      function Things(){
      var wotsits = getWotsitNumberFromSomewhere();
      return {things: wotsits / 13; leftover: wotsits % 13}; // 13 wotsits per thing
      }

      Personally, I like no comments – in an ideal world the code is clear enough. (No comments and unreadable code is really, really bad, though! Zero comments doesn't mean I like your code.) Because we're working in a fairly low level procedural language, though, you often need to comment higher level algorithms (particularly array or matrix related ones that get lost in a pile of loop code). XML header documentation is nice for the autocompletion but it is very easy for it to get out of date if you modify the code, and (like all comments) it isn't checked by the compiler. I would probably add it to the public interface at the end, given the choice (though for the projects I've released on here I was too lazy to do that).

      Sander RosselS 1 Reply Last reply
      0
      • B BobJanova

        The HIGHLANDER one is a bit of a joke, I think, and generally for switching between one and many it's fine to use a literal 1 – it's never going to be anything different and logically it could not be. But yes, generally, constants are good, particularly if you otherwise write a comment.

        const WOTSITS_PER_THING = 13;
        ...
        function Things(){
        var wotsits = getWotsitNumberFromSomewhere();
        return {things: wotsits / WOTSITS_PER_THING; leftover: wotsits % WOTSITS_PER_THING };
        }

        ... is much better than

        function Things(){
        var wotsits = getWotsitNumberFromSomewhere();
        return {things: wotsits / 13; leftover: wotsits % 13}; // 13 wotsits per thing
        }

        Personally, I like no comments – in an ideal world the code is clear enough. (No comments and unreadable code is really, really bad, though! Zero comments doesn't mean I like your code.) Because we're working in a fairly low level procedural language, though, you often need to comment higher level algorithms (particularly array or matrix related ones that get lost in a pile of loop code). XML header documentation is nice for the autocompletion but it is very easy for it to get out of date if you modify the code, and (like all comments) it isn't checked by the compiler. I would probably add it to the public interface at the end, given the choice (though for the projects I've released on here I was too lazy to do that).

        Sander RosselS Offline
        Sander RosselS Offline
        Sander Rossel
        wrote on last edited by
        #11

        BobJanova wrote:

        Personally, I like no comments

        Today I came across a piece of code again that was something like:

        ' Assign a value to an integer.
        Dim i As Integer = 10

        Written by a self-proclaimed senior... That makes me really sad :(( Btw, what's the story with CONST_HAVING_UNDERSCORES_AND_CAPITOLS? I am sure it had a good reason way back when, but I fail to see it now :)

        It's an OO world.

        public class Naerling : Lazy<Person>{}

        A B W 3 Replies Last reply
        0
        • Sander RosselS Sander Rossel

          BobJanova wrote:

          Personally, I like no comments

          Today I came across a piece of code again that was something like:

          ' Assign a value to an integer.
          Dim i As Integer = 10

          Written by a self-proclaimed senior... That makes me really sad :(( Btw, what's the story with CONST_HAVING_UNDERSCORES_AND_CAPITOLS? I am sure it had a good reason way back when, but I fail to see it now :)

          It's an OO world.

          public class Naerling : Lazy<Person>{}

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

          Naerling wrote:

          Btw, what's the story with CONST_HAVING_UNDERSCORES_AND_CAPITOLS?

          Like dictators who rule with an iron fist and force policies to be their way always and forever, constants dictate that their value never changes and they YELL AT YOU to remind you of this fact!!!!

          Somebody in an online forum wrote:

          INTJs never really joke. They make a point. The joke is just a gift wrapper.

          Sander RosselS 1 Reply Last reply
          0
          • A AspDotNetDev

            Naerling wrote:

            Btw, what's the story with CONST_HAVING_UNDERSCORES_AND_CAPITOLS?

            Like dictators who rule with an iron fist and force policies to be their way always and forever, constants dictate that their value never changes and they YELL AT YOU to remind you of this fact!!!!

            Somebody in an online forum wrote:

            INTJs never really joke. They make a point. The joke is just a gift wrapper.

            Sander RosselS Offline
            Sander RosselS Offline
            Sander Rossel
            wrote on last edited by
            #13

            Public Const OH_OK As Boolean = True

            :laugh:

            It's an OO world.

            public class Naerling : Lazy<Person>{}

            1 Reply Last reply
            0
            • Sander RosselS Sander Rossel

              BobJanova wrote:

              Personally, I like no comments

              Today I came across a piece of code again that was something like:

              ' Assign a value to an integer.
              Dim i As Integer = 10

              Written by a self-proclaimed senior... That makes me really sad :(( Btw, what's the story with CONST_HAVING_UNDERSCORES_AND_CAPITOLS? I am sure it had a good reason way back when, but I fail to see it now :)

              It's an OO world.

              public class Naerling : Lazy<Person>{}

              B Offline
              B Offline
              BobJanova
              wrote on last edited by
              #14

              Yeah, those comments just take up a line of screen space where code could be. Consts, well that's just a convention from the old C days, to clearly differentiate #defined values from normal variables (C doesn't have const declarations if I remember right). In Java or C# where underscored names are generally not used anyway, constants could arguably be lower_case_with_underscores, which is less aggressive on the eye. In my own code (when I'm not subject to convention) I usually case them normally for publicly visible members (const int ThingumyWotsit = 42;).

              1 Reply Last reply
              0
              • Sander RosselS Sander Rossel

                BobJanova wrote:

                Personally, I like no comments

                Today I came across a piece of code again that was something like:

                ' Assign a value to an integer.
                Dim i As Integer = 10

                Written by a self-proclaimed senior... That makes me really sad :(( Btw, what's the story with CONST_HAVING_UNDERSCORES_AND_CAPITOLS? I am sure it had a good reason way back when, but I fail to see it now :)

                It's an OO world.

                public class Naerling : Lazy<Person>{}

                W Offline
                W Offline
                witm55
                wrote on last edited by
                #15

                Naerling wrote:

                Btw, what's the story with CONST_HAVING_UNDERSCORES_AND_CAPITOLS?
                I am sure it had a good reason way back when, but I fail to see it now :)

                Quite simply: Every time you see a VARIABLE_IN_CAPITOLS_AND_UNDERSCORES in the code, you simply KNOW that this is a constant and you can spare yourself the effort of trying to change it. Sure, the compiler might warn you about it, depending on your IDE - but for very long codes, you might have to look up the declaration of the variable to see it is a constant. So - Capitols, for CONSTANTS. The underscore is just there because you can't use CamelCase while using capitols only.

                That seems to be a PEBKAC problem, Sir. Why don't you go and fetch a coffee while I handle the operation?

                Sander RosselS 1 Reply Last reply
                0
                • W witm55

                  Naerling wrote:

                  Btw, what's the story with CONST_HAVING_UNDERSCORES_AND_CAPITOLS?
                  I am sure it had a good reason way back when, but I fail to see it now :)

                  Quite simply: Every time you see a VARIABLE_IN_CAPITOLS_AND_UNDERSCORES in the code, you simply KNOW that this is a constant and you can spare yourself the effort of trying to change it. Sure, the compiler might warn you about it, depending on your IDE - but for very long codes, you might have to look up the declaration of the variable to see it is a constant. So - Capitols, for CONSTANTS. The underscore is just there because you can't use CamelCase while using capitols only.

                  That seems to be a PEBKAC problem, Sir. Why don't you go and fetch a coffee while I handle the operation?

                  Sander RosselS Offline
                  Sander RosselS Offline
                  Sander Rossel
                  wrote on last edited by
                  #16

                  Sounds plausible, but what about READ_ONLY_PROPERTIES? :^)

                  It's an OO world.

                  public class Naerling : Lazy<Person>{}

                  W 1 Reply Last reply
                  0
                  • Sander RosselS Sander Rossel

                    Sounds plausible, but what about READ_ONLY_PROPERTIES? :^)

                    It's an OO world.

                    public class Naerling : Lazy<Person>{}

                    W Offline
                    W Offline
                    witm55
                    wrote on last edited by
                    #17

                    Hmmm... I use to write that the same way I write read/write-Properties. But, hey, technically, from an using point of view, it is just like a constant: You can't write it. But it may be changing, depending on other properties.

                    That seems to be a PEBKAC problem, Sir. Why don't you go and fetch a coffee while I handle the operation?

                    Sander RosselS 1 Reply Last reply
                    0
                    • W witm55

                      Hmmm... I use to write that the same way I write read/write-Properties. But, hey, technically, from an using point of view, it is just like a constant: You can't write it. But it may be changing, depending on other properties.

                      That seems to be a PEBKAC problem, Sir. Why don't you go and fetch a coffee while I handle the operation?

                      Sander RosselS Offline
                      Sander RosselS Offline
                      Sander Rossel
                      wrote on last edited by
                      #18

                      witm55 wrote:

                      I use to write that the same way I write read/write-Properties.

                      So do I :laugh: Just wanted to say that it is not really very different from a Const in a usage kind of way. I think with todays tools the CAPITOLS_AND_UNDERSCORES is not necessary anymore. Visual Studio IntelliSense gives an icon saying something is a Const, it gives you text saying it is a Const, it gives the same if you hoover over it and with one "go to definition" you can see really everything you want to know about it. But from a historic point of view it is sometimes good to know why certain things are as they are :)

                      It's an OO world.

                      public class Naerling : Lazy<Person>{}

                      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