17 lines
354 B
Markdown
17 lines
354 B
Markdown
# User input
|
|
|
|
## Console.ReadLine
|
|
|
|
|
|
```C#
|
|
Console.Write("Type your name : ");
|
|
String name = Console.ReadLine();
|
|
|
|
// Can cause an error if the user write another type than int
|
|
Console.Write("What's your age : ");
|
|
int age = Convert.ToInt32(Console.ReadLine());
|
|
|
|
Console.WriteLine("Hello " + name);
|
|
Console.WriteLine("you are " + age + " years old");
|
|
```
|