Tagged Questions

17
votes
29answers
1k views

Are variable prefixes ( Hungarian ) really necessary anymore?

Hi, Since C# is strongly typed, do we really need to prefix variables anymore? e.g. iUserAge iCounter strUsername I used to prefix in the past, but going forward I don't see an …
10
votes
21answers
1k views

Do people use the Hungarian Naming Conventions in the real world?

Is it worth learning the convention or is it a bane to readability and maintainability?
0
votes
5answers
211 views

Hungarian Notation [closed]

Possible Duplicates: Why shouldn’t I use “Hungarian Notation”? Are variable prefixes ( Hungarian ) really necessary anymore? Do people use the Hungarian …
32
votes
34answers
3k views

Why shouldn’t I use “Hungarian Notation”?

I know what Hungarian refers to - giving information about a variable, parameter, or type as a prefix to its name. Everyone seems to be rabidly against it, even though in some case …
-1
votes
1answer
96 views

Good Naming Convention for Anonymous Types

An anonymous type can be thought of as a "Set Once" Object type, whereas an plain old Object or Variant can be set many times. An object or variant tends to be short lived, while a …
6
votes
20answers
1k views

Good examples of Hungarian Notation?

Please answer with good examples of Hungarian Notation, so we can bring together a collection of these. Edit: I agree that Hungarian for types isn't that necessary, I'm hoping f …
2
votes
1answer
60 views

How to notate nested arrays or structs or classes the hungarian way?

i have an array wich contains another array Would i notate it this way? pseudocode: rgrgTest = newArray(2) What if the array contains i.e. a struct? pseudocode: rggrTest = new …
1
vote
4answers
136 views

Naming advice for replacing/avoiding hungarian notation in UI?

I've stopped using Hungarian notation everywhere except in the UI, where often I have a username label, a user name text box, a user name local variable, a required field validator …
3
votes
3answers
379 views

What does the ‘k’ prefix indicate in Apple’s APIs?

I've run across many examples of Core Foundation variables named k + someVariableNameHere or k + APILibraryName(2Char) + someVariableNameHere. What does this prefix K indicate? …
3
votes
11answers
306 views

textBoxEmployeeName vs employeeNameTextBox

Which naming convention do you use and why? I like to use employeeNameTextBox, because: It seems more natural from an English language perspective. I find it's easier to look up …
21
votes
23answers
2k views

Should a project manager enforce coding standards?

Running a team of about 10 developers, mostly working in their own components, is it absolutely needed to force certain coding standards. Example 1 in function names: perform_ac …
7
votes
21answers
589 views

Do you follow the naming convention of the original programmer?

If you take over a project from someone to do simple updates do you follow their naming convention? I just received a project where the previous programmer used Hungarian Notation …
3
votes
17answers
833 views

Best way to get rid of hungarian notation?

Let's say you've inherited a C# codebase that uses one class with 200 static methods to provide core functionality (such as database lookups). Of the many nightmares in that class, …