Reading Varibles from Console
Well I've been doing some more work with C# and Im doing pretty good with it :) I got a little problem. I can't figure out how to read variables from the console. Example: in python it would be something like this:
Code:
user = raw_input("What is you name? ")
but I don't know how to do something like that in C# .NET Express :( I tried almost everything and I couldn't find anything >_<
Anyone know how I can do this?
Thanks in advance :)
Re: Reading Varibles from Console
Code:
Console.Write("What is your name? ");
String user = Console.ReadLine();
Re: Reading Varibles from Console
Wow I didn't think of that, :p thanks for the help I appreciate it. :)