simple question | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
0

simple question

If i were to wright a variable would it look like this? Var Name_A=world; Print ("Hello, " "Name_A";

17th Jul 2017, 7:02 PM
Generic Gamer
Generic Gamer - avatar
4 Antworten
0
no, this is not the appropriate C# code for variables.
17th Jul 2017, 7:10 PM
Edi Lipovac
Edi Lipovac - avatar
0
How exactly would I do the than?
17th Jul 2017, 7:11 PM
Generic Gamer
Generic Gamer - avatar
0
there is a whole course on C#, check that out
17th Jul 2017, 7:11 PM
Edi Lipovac
Edi Lipovac - avatar
0
Try something like this? String Name_A = "World"; Console.WriteLine("Hello {0}", Name_A);
17th Jul 2017, 7:38 PM
S C