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. Hungarian Notation in .Net - Yes or No?

Hungarian Notation in .Net - Yes or No?

Scheduled Pinned Locked Moved The Lounge
csharpc++rubybeta-testingtools
90 Posts 42 Posters 8 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.
  • M Marc Clifton

    I was never into Hungarian Notation to begin with, but... Look at C# 3.0's "var" keyword. Examples here[^] about 1/2 down. I think the var keyword might be reason to bring back Hungarian Notation, because you have no idea what type the var is unless you look at the initializer. Now, from what I've heard from others, the var keyword is really just a convenience for not typing in the complete type (which I disapprove of), but I suspect there are better uses. Marc

    Thyme In The Country
    Interacx
    My Blog

    J Offline
    J Offline
    jbarton
    wrote on last edited by
    #22

    There are much better uses for var than the just for lazy programmers. One good example of where it will help is with the new LINQ support. LINQ allows the generation of new data types as the result of a query. See http://blogs.msdn.com/danielfe/archive/2005/09/22/472884.aspx[^] for an example.

    1 Reply Last reply
    0
    • O originSH

      Identification Data :P

      V Offline
      V Offline
      Vikram A Punathambekar
      wrote on last edited by
      #23

      Damn, you beat me to it. :doh:

      Cheers, Vıkram.


      After all is said and done, much is said and little is done.

      O B 2 Replies Last reply
      0
      • R Rama Krishna Vavilala

        I can guarantee that most of the code which claims that it uses Hungarian notation does not, in fact, do it correctly. I think most of the code just uses some type based prefix (may or may not in line with actual Hungarian notation). So the real debate is whether to use type based prefix or not (and not whether to use Hungarian notation or not). That being said I think a programmer should follow the notation/convention most appropriate for the platform/framework he is developing on. If I am developing in Java, I follow the java conventions (lower case everywhere except for class names). For C#: Framework Design Guidelines[^]. For JavaScript: something similar to Java. For VB/VBSCRIPT: Visual Basic naming conventions (Capital variable names). Also if your company has its own naming convention follow that. Fighting over which naming convention is better is useless. Another thing to note about .Net/Java is that properly written method/function code generally are really small. [My personal rule (based on Martin Fowler's book) is anything above 20 lines of code should be refactored and I have been pretty successful most of the times.] Which eliminates need for type based prefix notation. -- modified at 10:11 Monday 30th July, 2007

        V Offline
        V Offline
        Vikram A Punathambekar
        wrote on last edited by
        #24

        Rama Krishna Vavilala wrote:

        That being said I think a programmer should follow the notation/convention most appropriate for the platform/framework he is developing on.

        Amen. But let's not talk about OTBS in Java

        Cheers, Vıkram.


        After all is said and done, much is said and little is done.

        1 Reply Last reply
        0
        • O originSH

          I use hungarian notation as a memory aid. Combined with intelligence it really speeds things up for me. i.e. what did I call that damn bool? keystrokes "this.b_" ahhhh there it is. I also use it to differentiate between local, private and public members. Local ones i use purely camelCasing, private have hungarian and public have properized (or whatever the programming term is). i.e. localVariable this.s_PrivateMember this.PublicMember It means I can quick tell where something has come from and with the private members allows me to quickly find a certain type. I combine that with always including "this." or "base." so that I also know if something is in this class or coming from an inherited class. I know alot of this isn't to many peoples tastes but it works for me, it allows me to quickly reabsorb the meaning of code I haven't visited in a while.

          R Offline
          R Offline
          Rage
          wrote on last edited by
          #25

          originSH wrote:

          Combined with intelligence

          :laugh: You probably meant IntelliSense, but some intelligence on the top of it of course does not harm. :rolleyes:

          Don't follow any man spiritually, don't do anything that will get you in sh*t if god is real - Bradml[^]

          O 1 Reply Last reply
          0
          • realJSOPR realJSOP

            I recently posted a C# article and as a C++ programmer is wont to do, I used hungarian notation on all my variables. This has generated a bit of discussion in the comments for the article, and not wanting to be completely close-minded about it, I decided to google it. Here's what I've found so far: 0) It seems that Microsoft thinks we should abandon it in favor of "more natural english-like" variable names. The best response to that statement was this little gem: "If Microsoft said I shouldn't comment my code, it wouldn't stop me from doing that, either." I could not have said it better myself. Maybe this outlook by Microsoft is why Vista is such garbage, or why the ORCAS Beta 2 is so transiently reliable. Just because some self-important evangelist from Microsoft says it doesn't make it gold. Translation - this claim is pretty weak. This is from Microsoft's coding guidelines: Use names that describe a parameter's meaning rather than names that describe a parameter's type. Development tools should provide meaningful information about a parameter's type. Therefore, a parameter's name can be put to better use by describing meaning. Use type-based parameter names sparingly and only where it is appropriate. It looks to me like they're putting the emphasis on reading code squarely on the end user instead of the developer. Hello!? We're programmers, and we can't be bothered by trying to figure out what type a variable is supposed to be. Sure, code should be easy to read, but that trait is introduced with meaningful variable and function names, not by removing ancillary information about the variables being used. 1) If you change the variable's type, it all of a sudden invalidates the name of the variable. Ever heard of Find/replace (with case matching and whole word turned on)? Besides, I can count on one hand how many times I changed the type of a variable in the last 18 years of C++ work. 2) Puts an emphasis on the type instead of the descriptive identifier name—encourages poor variable names. Ummm, how can a single lowercase character move the emphasis from the following variable name to the type itself. Further, hungarian notation in no way promotes the creation of "poor variable names". I can't recall ever hearing a programmer say, "Yep, using hungarian notation so that means I can skimp on the rest of the variable name." There are other equally invalid reasons put forth by all manner of know-it-alls, but I got bored typing this stuff. ------

            R Offline
            R Offline
            Rage
            wrote on last edited by
            #26

            <poor joke> I usually use English notation, since I do not speak Hungarian good enough to name my variables after it.</poor joke>

            Don't follow any man spiritually, don't do anything that will get you in sh*t if god is real - Bradml[^]

            1 Reply Last reply
            0
            • C Chris Maunder

              Yeah, I'm still trying to decide on this one. "ID" is the more common everyday form but they have a point that it's not actually an acronym.

              cheers, Chris Maunder

              CodeProject.com : C++ MVP

              P Offline
              P Offline
              peterchen
              wrote on last edited by
              #27

              as someone pointed out, it's an acronym of "IdentifyingDatum". :cool:


              We are a big screwed up dysfunctional psychotic happy family - some more screwed up, others more happy, but everybody's psychotic joint venture definition of CP
              My first real C# project | Linkify!|FoldWithUs! | sighist

              1 Reply Last reply
              0
              • R Rage

                originSH wrote:

                Combined with intelligence

                :laugh: You probably meant IntelliSense, but some intelligence on the top of it of course does not harm. :rolleyes:

                Don't follow any man spiritually, don't do anything that will get you in sh*t if god is real - Bradml[^]

                O Offline
                O Offline
                originSH
                wrote on last edited by
                #28

                whoops, yes I did, damn IESpell :P though your right the last bit needed is a dash of intelligence, otherwise computers would be able to do the coding for us :O

                1 Reply Last reply
                0
                • J jhwurmbach

                  John Simmons / outlaw programmer wrote:

                  It seems that Microsoft thinks we should abandon it in favor of "more natural english-like" variable names

                  With any recent IDE, just holding the Cursor over the variable name does show the type. I cant see the point in prefixing rubbish to the name. I can cope with it, but I simply don't get the point. Maybe it is lack of practice, maybe insisting on hungarian notation comes out of lack practice reading code without it.


                  Failure is not an option - it's built right in.

                  J Offline
                  J Offline
                  James R Twine
                  wrote on last edited by
                  #29

                  Yes, but until source code, diff tools and the like gain the ability to compile (or at least parse) source code to the point where they too can offer such features, there may still be a need.    There is something to be said for diff/merging a 100K+ source code file without having to keep scrolling upward just verify the type of a variable involved in a conflict.    Having the notation there does not hurt those that do not want it there (they are adults, they can ignore it), but not having it there does hurt those that need it (whatever their reasons/needs may be).    Peace!

                  -=- James
                  Please rate this message - let me know if I helped or not! * * * If you think it costs a lot to do it right, just wait until you find out how much it costs to do it wrong!
                  Avoid driving a vehicle taller than you and remember that Professional Driver on Closed Course does not mean your Dumb Ass on a Public Road!
                  See DeleteFXPFiles

                  1 Reply Last reply
                  0
                  • V Vikram A Punathambekar

                    Damn, you beat me to it. :doh:

                    Cheers, Vıkram.


                    After all is said and done, much is said and little is done.

                    O Offline
                    O Offline
                    originSH
                    wrote on last edited by
                    #30

                    ;)

                    1 Reply Last reply
                    0
                    • C Chris Maunder

                      Yeah, I'm still trying to decide on this one. "ID" is the more common everyday form but they have a point that it's not actually an acronym.

                      cheers, Chris Maunder

                      CodeProject.com : C++ MVP

                      B Offline
                      B Offline
                      Brady Kelly
                      wrote on last edited by
                      #31

                      Unless you assert it to stand for, my personal classic, "Identification Datum".:->

                      1 Reply Last reply
                      0
                      • V Vikram A Punathambekar

                        Damn, you beat me to it. :doh:

                        Cheers, Vıkram.


                        After all is said and done, much is said and little is done.

                        B Offline
                        B Offline
                        Brady Kelly
                        wrote on last edited by
                        #32

                        Damn, you both beat me, but I got the singular correct. ;P

                        1 Reply Last reply
                        0
                        • realJSOPR realJSOP

                          I recently posted a C# article and as a C++ programmer is wont to do, I used hungarian notation on all my variables. This has generated a bit of discussion in the comments for the article, and not wanting to be completely close-minded about it, I decided to google it. Here's what I've found so far: 0) It seems that Microsoft thinks we should abandon it in favor of "more natural english-like" variable names. The best response to that statement was this little gem: "If Microsoft said I shouldn't comment my code, it wouldn't stop me from doing that, either." I could not have said it better myself. Maybe this outlook by Microsoft is why Vista is such garbage, or why the ORCAS Beta 2 is so transiently reliable. Just because some self-important evangelist from Microsoft says it doesn't make it gold. Translation - this claim is pretty weak. This is from Microsoft's coding guidelines: Use names that describe a parameter's meaning rather than names that describe a parameter's type. Development tools should provide meaningful information about a parameter's type. Therefore, a parameter's name can be put to better use by describing meaning. Use type-based parameter names sparingly and only where it is appropriate. It looks to me like they're putting the emphasis on reading code squarely on the end user instead of the developer. Hello!? We're programmers, and we can't be bothered by trying to figure out what type a variable is supposed to be. Sure, code should be easy to read, but that trait is introduced with meaningful variable and function names, not by removing ancillary information about the variables being used. 1) If you change the variable's type, it all of a sudden invalidates the name of the variable. Ever heard of Find/replace (with case matching and whole word turned on)? Besides, I can count on one hand how many times I changed the type of a variable in the last 18 years of C++ work. 2) Puts an emphasis on the type instead of the descriptive identifier name—encourages poor variable names. Ummm, how can a single lowercase character move the emphasis from the following variable name to the type itself. Further, hungarian notation in no way promotes the creation of "poor variable names". I can't recall ever hearing a programmer say, "Yep, using hungarian notation so that means I can skimp on the rest of the variable name." There are other equally invalid reasons put forth by all manner of know-it-alls, but I got bored typing this stuff. ------

                          J Offline
                          J Offline
                          James R Twine
                          wrote on last edited by
                          #33

                          John Simmons / outlaw programmer wrote:

                          Microsoft: Use names that describe a parameter's meaning rather than names that describe a parameter's type. Development tools should provide meaningful information about a parameter's type.

                          There is no reason that the two cannot live together.    Just because you prefix (and/or use Hungarian notation with) a variable name with a mnemonic for its type does not automatically mean that the rest of the variable name is garbage.

                          int UserNameIndex; // int-based indexing
                          string UserNameIndex // string-based indexing

                          // Or...

                          int iUserNameIndex;
                          string sUserNameIndex;

                          While both are an index, the type of indexing in use may be different, especially if users can be referenced by both a string (i.e. last name) or an ordinal index. (Anyone that has ever written or had to deal with a string-based key in a dictionary or string indexer knows what I am talking about.)    Besides, as I wrote in a previous response, those that do not like prefixing can very easily ignore a prefix that is there and pay attention to the rest of the variable name if they want to.  However, a maintenance developer that is used to using the prefixes as a debugging/understanding aid will react negatively to their absence.     When it comes to making source code more understandable by others, I am of the humble opinion that it is better to have something and not need it than to need something and not have it.  I would rather have a developer looking at my code and saying something like: "Well, duh, I know this is a double variable," rather than "what kind of variable is this?"  Same thing with comments - better to have someone read them and wonder why I am commenting something that is obvious (to the reader), rather than give a less experienced developer the chance to misunderstand what I am trying to do in the code.    Peace!

                          -=- James
                          Please rate this message - let me know if I helped or not! * * * If you think it costs a lot to do it right, just wait until you find out how much it costs to do it wrong!
                          Avoid driving a vehicle taller than you and remember that Professional Driver on Closed Course does not mean your Dumb Ass on a Public Road!
                          See

                          1 Reply Last reply
                          0
                          • V Vikram A Punathambekar

                            Chris Maunder wrote:

                            they have a point that it's not actually an acronym

                            1. I try to go with natural language. 2. Somebody here said ID stood for Identifying Datum. :~

                            Cheers, Vıkram.


                            After all is said and done, much is said and little is done.

                            B Offline
                            B Offline
                            Brady Kelly
                            wrote on last edited by
                            #34

                            Vikram A Punathambekar wrote:

                            2. Somebody here said ID stood for Identifying Datum.

                            That was me, back in March. I'm glad it was well remembered, because I have no basis for saying that except defending my use of the uppercase D. It was the aspirant lawyer in me breaking out.

                            1 Reply Last reply
                            0
                            • realJSOPR realJSOP

                              I recently posted a C# article and as a C++ programmer is wont to do, I used hungarian notation on all my variables. This has generated a bit of discussion in the comments for the article, and not wanting to be completely close-minded about it, I decided to google it. Here's what I've found so far: 0) It seems that Microsoft thinks we should abandon it in favor of "more natural english-like" variable names. The best response to that statement was this little gem: "If Microsoft said I shouldn't comment my code, it wouldn't stop me from doing that, either." I could not have said it better myself. Maybe this outlook by Microsoft is why Vista is such garbage, or why the ORCAS Beta 2 is so transiently reliable. Just because some self-important evangelist from Microsoft says it doesn't make it gold. Translation - this claim is pretty weak. This is from Microsoft's coding guidelines: Use names that describe a parameter's meaning rather than names that describe a parameter's type. Development tools should provide meaningful information about a parameter's type. Therefore, a parameter's name can be put to better use by describing meaning. Use type-based parameter names sparingly and only where it is appropriate. It looks to me like they're putting the emphasis on reading code squarely on the end user instead of the developer. Hello!? We're programmers, and we can't be bothered by trying to figure out what type a variable is supposed to be. Sure, code should be easy to read, but that trait is introduced with meaningful variable and function names, not by removing ancillary information about the variables being used. 1) If you change the variable's type, it all of a sudden invalidates the name of the variable. Ever heard of Find/replace (with case matching and whole word turned on)? Besides, I can count on one hand how many times I changed the type of a variable in the last 18 years of C++ work. 2) Puts an emphasis on the type instead of the descriptive identifier name—encourages poor variable names. Ummm, how can a single lowercase character move the emphasis from the following variable name to the type itself. Further, hungarian notation in no way promotes the creation of "poor variable names". I can't recall ever hearing a programmer say, "Yep, using hungarian notation so that means I can skimp on the rest of the variable name." There are other equally invalid reasons put forth by all manner of know-it-alls, but I got bored typing this stuff. ------

                              S Offline
                              S Offline
                              Sam_c
                              wrote on last edited by
                              #35

                              Well first off, I’d like to thank you. This is why, I move between C, C++ and C# a lot these days which is well bloody annoying. I’ve just read your post and it hit me... do I still use it, as it’s a very subconscious thing when I’m creating variables. So I opened three instances of VS and loaded up 1 project from each language and took a look (my latest projects in each) and its funny but they are all the same in the use of the notation... very little when compared to a c++ project from a year ago which had the correct notation. now I’m going to blame VS for this, as to see the type I just hover the cursor over the variable and up pops the variable type and name again (like I didn’t know the name of what I just hovered over). Which is well stupid because I can’t just skim read the code and understand what is really going on. So, I am now going to go and put in Hungarian notation to every single variable in all my projects (using Find and Replace) oh and backing them up first. I see the great aid of notation in that you can quickly identify the type of a variable even in notepad :) p.s i think its good coding practise myself which is why I’m a bit shocked at how little of it i do of late. Thanks again and keep at it :) pp.s Its good if everyone uses the same notation. MSDN 1998 HN List & MSDN List #2 I have seen code with the wrong tags used, eg cvarname for char Is there a solid list out there without all the C*** just a simple table list of all the notation and where there meant to be used

                              Code Project Lounge 101 by John Cardinal

                              1 Reply Last reply
                              0
                              • realJSOPR realJSOP

                                I recently posted a C# article and as a C++ programmer is wont to do, I used hungarian notation on all my variables. This has generated a bit of discussion in the comments for the article, and not wanting to be completely close-minded about it, I decided to google it. Here's what I've found so far: 0) It seems that Microsoft thinks we should abandon it in favor of "more natural english-like" variable names. The best response to that statement was this little gem: "If Microsoft said I shouldn't comment my code, it wouldn't stop me from doing that, either." I could not have said it better myself. Maybe this outlook by Microsoft is why Vista is such garbage, or why the ORCAS Beta 2 is so transiently reliable. Just because some self-important evangelist from Microsoft says it doesn't make it gold. Translation - this claim is pretty weak. This is from Microsoft's coding guidelines: Use names that describe a parameter's meaning rather than names that describe a parameter's type. Development tools should provide meaningful information about a parameter's type. Therefore, a parameter's name can be put to better use by describing meaning. Use type-based parameter names sparingly and only where it is appropriate. It looks to me like they're putting the emphasis on reading code squarely on the end user instead of the developer. Hello!? We're programmers, and we can't be bothered by trying to figure out what type a variable is supposed to be. Sure, code should be easy to read, but that trait is introduced with meaningful variable and function names, not by removing ancillary information about the variables being used. 1) If you change the variable's type, it all of a sudden invalidates the name of the variable. Ever heard of Find/replace (with case matching and whole word turned on)? Besides, I can count on one hand how many times I changed the type of a variable in the last 18 years of C++ work. 2) Puts an emphasis on the type instead of the descriptive identifier name—encourages poor variable names. Ummm, how can a single lowercase character move the emphasis from the following variable name to the type itself. Further, hungarian notation in no way promotes the creation of "poor variable names". I can't recall ever hearing a programmer say, "Yep, using hungarian notation so that means I can skimp on the rest of the variable name." There are other equally invalid reasons put forth by all manner of know-it-alls, but I got bored typing this stuff. ------

                                W Offline
                                W Offline
                                wout de zeeuw
                                wrote on last edited by
                                #36

                                All the arguments you disagree with make pretty good sense. But it's getting to an almost religious level of discussion here. Rather come up with some typical examples to give the discussion substance. Usually you'd use variables like: - string customerName, why use sCustomerName here? It hurts the eyes, and intellisense shows you the type if you insist on knowing, and the compiler does the type checking. - Bit more tricky: some kind of distance variable: double buildingLength. This could be ok, if the system has standardized length variables (e.g. metric systems). But if the unit is different than expected, it's better to chose buildingLengthInInches e.g. - What to do with more complex variables? E.g. of type Dictionary<int, List<Customer>>. Usually I go for a pretty verbose naming scheme: IdToCustomerList. Unless the names get really really long, I stay away from using abbrevations, because with autocompletion readability outweights abbrevations usually. So in 90% of the cases hinting on the type doesn't make much sense. But there's some cases where it does, there's no need to be completely black and white.

                                Wout

                                1 Reply Last reply
                                0
                                • J jhwurmbach

                                  John Simmons / outlaw programmer wrote:

                                  It seems that Microsoft thinks we should abandon it in favor of "more natural english-like" variable names

                                  With any recent IDE, just holding the Cursor over the variable name does show the type. I cant see the point in prefixing rubbish to the name. I can cope with it, but I simply don't get the point. Maybe it is lack of practice, maybe insisting on hungarian notation comes out of lack practice reading code without it.


                                  Failure is not an option - it's built right in.

                                  C Offline
                                  C Offline
                                  Craster
                                  wrote on last edited by
                                  #37

                                  jhwurmbach wrote:

                                  With any recent IDE, just holding the Cursor over the variable name does show the type. I cant see the point in prefixing rubbish to the name.

                                  Try doing that when someone's pasted some code into a question in one of the programming forums. That's when hungarian is really useful.

                                  J 1 Reply Last reply
                                  0
                                  • V VonHagNDaz

                                    I've been at my Job(1st since graduating college), for about a year now, and I dont know what I'd do without the notation. I'm mostly dealing with code that has somewhere along the lines of 10000 line functions. Having to scroll up to check types for variable types only used once would be beyond a pain in the a**. So hurray for Hungarian Notation for saving me precious time and facilitating my laziness to scroll up.

                                    [Insert Witty Sig Here]

                                    B Offline
                                    B Offline
                                    Brady Kelly
                                    wrote on last edited by
                                    #38

                                    VonHagNDaz wrote:

                                    Having to scroll up to check types for variable types

                                    I don't have to do that, I just hover my mouse cursor over the variable and get told its type.

                                    1 Reply Last reply
                                    0
                                    • C Craster

                                      jhwurmbach wrote:

                                      With any recent IDE, just holding the Cursor over the variable name does show the type. I cant see the point in prefixing rubbish to the name.

                                      Try doing that when someone's pasted some code into a question in one of the programming forums. That's when hungarian is really useful.

                                      J Offline
                                      J Offline
                                      jhwurmbach
                                      wrote on last edited by
                                      #39

                                      In that case, the code snippet would be so short that the declaration would be immediatly above it. All in all - both your and James R. Twines argument seems a little far fetched to me.


                                      Failure is not an option - it's built right in.

                                      C J 2 Replies Last reply
                                      0
                                      • M Marc Clifton

                                        I was never into Hungarian Notation to begin with, but... Look at C# 3.0's "var" keyword. Examples here[^] about 1/2 down. I think the var keyword might be reason to bring back Hungarian Notation, because you have no idea what type the var is unless you look at the initializer. Now, from what I've heard from others, the var keyword is really just a convenience for not typing in the complete type (which I disapprove of), but I suspect there are better uses. Marc

                                        Thyme In The Country
                                        Interacx
                                        My Blog

                                        A Offline
                                        A Offline
                                        Andy Brummer
                                        wrote on last edited by
                                        #40

                                        The biggest reason I've seen for it has to do with generic methods, the best example being from the C++ STL. Every container class defines a list of typedefs for returned classes so you can create variable of those class types with just the container as a parameter. If the developer of the original class leaves off the typedef then you can't use the return type in a generic method.

                                        class A
                                        {
                                        typedef number int;
                                        int f() { return 1; }
                                        }

                                        class B
                                        {
                                        typedef number double;
                                        double f() { return 1; }
                                        }

                                        void f(X x)
                                        {
                                        X::number = x.f();
                                        }

                                        Instead of X::number var would be much more useful.


                                        This blanket smells like ham

                                        1 Reply Last reply
                                        0
                                        • realJSOPR realJSOP

                                          I recently posted a C# article and as a C++ programmer is wont to do, I used hungarian notation on all my variables. This has generated a bit of discussion in the comments for the article, and not wanting to be completely close-minded about it, I decided to google it. Here's what I've found so far: 0) It seems that Microsoft thinks we should abandon it in favor of "more natural english-like" variable names. The best response to that statement was this little gem: "If Microsoft said I shouldn't comment my code, it wouldn't stop me from doing that, either." I could not have said it better myself. Maybe this outlook by Microsoft is why Vista is such garbage, or why the ORCAS Beta 2 is so transiently reliable. Just because some self-important evangelist from Microsoft says it doesn't make it gold. Translation - this claim is pretty weak. This is from Microsoft's coding guidelines: Use names that describe a parameter's meaning rather than names that describe a parameter's type. Development tools should provide meaningful information about a parameter's type. Therefore, a parameter's name can be put to better use by describing meaning. Use type-based parameter names sparingly and only where it is appropriate. It looks to me like they're putting the emphasis on reading code squarely on the end user instead of the developer. Hello!? We're programmers, and we can't be bothered by trying to figure out what type a variable is supposed to be. Sure, code should be easy to read, but that trait is introduced with meaningful variable and function names, not by removing ancillary information about the variables being used. 1) If you change the variable's type, it all of a sudden invalidates the name of the variable. Ever heard of Find/replace (with case matching and whole word turned on)? Besides, I can count on one hand how many times I changed the type of a variable in the last 18 years of C++ work. 2) Puts an emphasis on the type instead of the descriptive identifier name—encourages poor variable names. Ummm, how can a single lowercase character move the emphasis from the following variable name to the type itself. Further, hungarian notation in no way promotes the creation of "poor variable names". I can't recall ever hearing a programmer say, "Yep, using hungarian notation so that means I can skimp on the rest of the variable name." There are other equally invalid reasons put forth by all manner of know-it-alls, but I got bored typing this stuff. ------

                                          J Offline
                                          J Offline
                                          Judah Gabriel Himango
                                          wrote on last edited by
                                          #41

                                          I don't mind Hungarian notation (the false kind that's practiced now, or the original kind[^]), which, ironically for you, was invented by a Microsoft programmer. Personally, once I started coding in C#, I abandoned all Hungarian notation and found it quite liberating. It now seems superfluous to put a character at the beginning of each variable just to define the type. Simply put, I've never once thought to myself, "gee, is it a boolean? Or a string?"

                                          Tech, life, family, faith: Give me a visit. I'm currently blogging about: Orthodox Jews are persecuting Messianic Jews in Israel (video) The apostle Paul, modernly speaking: Epistles of Paul Judah Himango

                                          R 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