What will be the output of the following C# code snippet?
class equality
{
public int x;
public int y;
public Boolean isequal()
{
return (x == y);
}
}
class Program
{
static void Main(string[] args)
{
equality obj = new equality();
obj.x = 5;
obj.y = 5;
Console.WriteLine(obj.isequal());
Console.ReadLine();
}
}
class equality
{
public int x;
public int y;
public Boolean isequal()
{
return (x == y);
}
}
class Program
{
static void Main(string[] args)
{
equality obj = new equality();
obj.x = 5;
obj.y = 5;
Console.WriteLine(obj.isequal());
Console.ReadLine();
}
}
A. false
B. true
D. 1
Answer: Option B
Join The Discussion