1. Console.WriteLine "what is your name"
2. String name = Console.ReadLine
3. "Welcome to C#" + name
4. Remember to put ; at the end of each line
5. To tell user to enter something: Console.ReadLine
6. Have to specify its data type eg int not string
7. Use a plus sign to join things together ie "Welcome to c#" + name
8. For numbers use int not string
9. Int is integer and is needed because that's the type of data needed. Input is by default a string in python and in c sharp so you need int to convert it into the type of data it needs to be. Called typecasting.
10. So when you need to do a number thing you have to do Convert.ToInt32
11. ToDouble for decimals