fork download
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. var a = new Dictionary<string,string> {{"a","a"}};
  9. var b = new Dictionary<string,string> {{"a","a"}};
  10. Console.WriteLine(a.Equals(b));
  11. }
  12. }
Success #stdin #stdout 0.04s 36944KB
stdin
Standard input is empty
stdout
False