Trilok Chand Swami

What is the output of the following code?
class Program
{
static void Main()
{
object x = 10;
object y = 10;
Console.WriteLine(ReferenceEquals(x, y));
}
}

4 months ago | [YT] | 0