0
simple question
If i were to wright a variable would it look like this? Var Name_A=world; Print ("Hello, " "Name_A";
4 Antworten
0
no, this is not the appropriate C# code for variables.
0
How exactly would I do the than?
0
there is a whole course on C#, check that out
0
Try something like this?
String Name_A = "World";
Console.WriteLine("Hello {0}", Name_A);