fork(1) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. object a = 5;
  8. object b = 5;
  9. System.Console.WriteLine(a == b);
  10. System.Console.WriteLine(a.Equals(b));
  11. System.Console.WriteLine(a.GetType().Name);
  12. }
  13. }
Success #stdin #stdout 0.01s 131648KB
stdin
Standard input is empty
stdout
False
True
Int32