What will be the output of the C#.NET code snippet given below?
Sandeep Soni
Select an image from your device to upload
class SampleProgram { static void Main(string[] args) { string str = "Hello World!"; Console.WriteLine(String.Compare(str, "Hello World?").GetType()); } }
class SampleProgram
{
static void Main(string[] args)
string str = "Hello World!";
Console.WriteLine(String.Compare(str, "Hello World?").GetType());
}
a) 0 b) 1 c) String d) Hello World? e) System.Int32
System.Int32
e) System.Int32