fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. string a = "hui";
  8. int b = 42;
  9.  
  10. var p = new {key = a, value = b};
  11.  
  12. string a2 = "pizda";
  13. int b2 = 43;
  14.  
  15. var p2 = new {key = a2, ggurda = b2};
  16. Console.WriteLine(p.GetType() == p2.GetType());
  17. }
  18. }
Success #stdin #stdout 0.03s 23896KB
stdin
Standard input is empty
stdout
False