fork(3) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. string s1 = "Abc";
  8. string s2 = "ABC";
  9. bool result = s1.Equals(s2, StringComparison.CurrentCultureIgnoreCase);
  10. Console.WriteLine(result);
  11. }
  12. }
Success #stdin #stdout 0.04s 37120KB
stdin
Standard input is empty
stdout
True