C Sharp (C#) - Strings and StringBuilder
What is the output of the following C# code?
string s1 = "Hello";
string s2 = "hello";
bool result = s1.Equals(s2, StringComparison.OrdinalIgnoreCase);
Console.WriteLine(result);
