+ 2
Is it possible to print out everything? Both name and age with one command?
2 Answers
+ 2
Console.Writeline(me.name, me.age);
Or formatting the output:
Console.Writeline(quot;Name: {me.name}\tAge: {me.age}");
+ 2
Thanks Tortello, it was helpful!