fork download
  1. using System;
  2.  
  3. namespace Recetas.Cap03
  4. {
  5. internal class UsoComprobacionGetType
  6. {
  7. public static void Main()
  8. {
  9. int num1 = 13;
  10. int num2 = 83;
  11. long num3 = 19;
  12.  
  13. Console.WriteLine ("¿`num1` y `num2` son del mismo tipo?: {0}",
  14. Object.ReferenceEquals(num1.GetType(),num2.GetType()));
  15.  
  16. Console.WriteLine ("¿`num1` y `num3` son del mismo tipo?: {0}",
  17. Object.ReferenceEquals(num1.GetType(),num3.GetType()));
  18. }
  19. }
  20. }
Success #stdin #stdout 0.02s 33864KB
stdin
Standard input is empty
stdout
¿`num1` y `num2` son del mismo tipo?: True
¿`num1` y `num3` son del mismo tipo?: False