Hello, I have been programming for about two weeks in c#, and I have one question, that I could not find by searching the web.
while coding a string input, it goes like:
Code:
string sname = Console.ReadLine();
Console.WriteLine("you just wrote {0}", sname);
My question though, is how you would do an input with an int value, like the user inputting a value for int x, or something like that. Thanks for any help given.