¿Cuál es la salida del siguiente código?
string str1 = "Hello";
string str2 = "Hello";
string str3 = "World";
Console.WriteLine(str1 == str2);
Console.WriteLine(str1 == str3);
¿Cuál es la salida del siguiente código?
string str1 = "Hello";
string str2 = "Hello";
string str3 = "World";
Console.WriteLine(str1 == str2);
Console.WriteLine(str1 == str3);