Another topic;
I have been reading a little about naming variables.
I would like your input on your methods of naming them~
The first character of a variable name must be either a letter, an underscore character (_), or the at symbol (@)
Now, if I someday were to write my own little program (i have ideas..), i would like it to be easy to remember these, so if I had a variable named "littleJohn" - The risk of me forgetting or... not having a structure in my naming (personal) system. How do you name your variables? All help is appreciated, as usual (even if I may not look like I do)
EDIT:
Also, I believe this isn't really the forum to ask these questions, I only do because I know we got a (if not more) skilled programmer
Could you recommend a good forum for me to post programming questions for tips & tricks?
EDIT: Oh my god, double post. My sins! My SINS! *did it to highlight a new post here*
EDIT:
Is this horrible? myName, myAge - granted, if I had 100's of different variables... maybe a better method could be used?
static void Main(string[] args)
{
int myAge;
string myName;
myAge = 23;
myName = "Ivan";
Console.WriteLine("Name: {0}\nAge: {1}", myName, myAge);
Console.ReadKey();
}