fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. string t = "hello";
  8. string s = "Hello";
  9.  
  10. if (string.Compare(t, s, StringComparison.OrdinalIgnoreCase) == 0)
  11. {
  12. Console.Write("Successful comparison");
  13. }
  14. }
  15. }
Success #stdin #stdout 0.01s 29664KB
stdin
Standard input is empty
stdout
Successful comparison