¿Cuál es la salida del siguiente código?
string hello = "Hello";
string world = "world!";
string greeting = string.Concat(hello, " ", world);
Console.WriteLine(greeting.ToString());
¿Cuál es la salida del siguiente código?
string hello = "Hello";
string world = "world!";
string greeting = string.Concat(hello, " ", world);
Console.WriteLine(greeting.ToString());