+ 1
Adding more to the output
When say you have a part in your program that will read like Console.WriteLine("Hello " newName "how are you?") How you do you put that in C# language so I don't get any errors?
2 Respuestas
+ 5
Use + to concatenate strings:
Console.WriteLine("Hello, " + name + ", how are you?")
0
Thank you forgot about that