Tagged Questions
3
votes
18answers
922 views
What do you name functions/variables/etc when you can't think of a good name?
When you are defining a function/variable/etc and are not sure what to name it, what do you name it? How do you come up with a name?
If you use a temporary name as a place-card until you give it it's ...
19
votes
19answers
4k views
How do you name your private variables in C#? [closed]
What is the best practice, most commonly accepted naming conventions for private variables in C#?
private int myInteger;
private int MyInteger;
private int mMyInteger;
private int _myInteger;
...