fork(9) download
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. var myDict = new Dictionary<string, int>(
  9. StringComparer.OrdinalIgnoreCase);
  10. myDict.Add("Cat", 2);
  11. myDict.Add("Python", 4);
  12. myDict.Add("DOG", 6);
  13. }
  14. }
Success #stdin #stdout 0.03s 33904KB
stdin
Standard input is empty
stdout
Standard output is empty