class MainClass
{
static void Main()
{
MainClass AnObject=new MainClass();
if(AnObject.AMethod(7,8) || AnObject.AMethod(8,9));
}
bool AMethod(long n1,long n2)
{
System.Console.Write(n1+n2);
return n1 < n2;
}
}
A Compiler warning [ Possible mistaken null statement ].
B 15
C Syntax error [ Possible mistaken null statement ].
D 1517
E Syntax error [ Cannot implicitly convert ' int ' to ' long ' ].