How to get the value from keyboard?
C#
3
Posts
3
Posters
0
Views
1
Watching
-
I am new to progamming world and just want to start with C#. How can I write a simple program like The program will ask u what is your name? You type: Robert and it say Hi, Robert. Thank so much.
The Console class has what you are looking for. Look for the ReadLine() and the WriteLine() methods. Regards Senthil My Blog
-
I am new to progamming world and just want to start with C#. How can I write a simple program like The program will ask u what is your name? You type: Robert and it say Hi, Robert. Thank so much.
Anonymous wrote: The program will ask u what is your name? Console.WriteLine("what is your name?"); Anonymous wrote: and it say Hi, ..... Console.WriteLine("Hi, " + Console.ReadLine());