Skip to main content
🔮 Output PredictionC# C# / .NET Medium⚡+20 XP

String Comparison

What does this return?

C# / .NET
string a = "Hello";
string b = "hello";
Console.WriteLine(a.Equals(b, StringComparison.OrdinalIgnoreCase));

🔮 What is the output?