fork download
  1. using System;
  2.  
  3. public class Test {
  4. public static void printType(object obj) {
  5. Console.WriteLine(obj.GetType());
  6. }
  7. public static void Main() {
  8. printType(1);
  9. printType(false);
  10. }
  11. }
Success #stdin #stdout 0.02s 33808KB
stdin
Standard input is empty
stdout
System.Int32
System.Boolean