fork download
  1. // ===++===
  2. //
  3. // OrtizOL
  4. //
  5. // ===--===
  6. /*============================================================
  7. //
  8. // Clase: PropiedadIsGenericType.cs
  9. //
  10. // Propósito: Demostración de la propiedad
  11. // System.Type.IsGenericType.
  12. //
  13. ============================================================*/
  14.  
  15. using System;
  16.  
  17. namespace Articulos.Cap03
  18. {
  19. internal class ClaseGenerica<T> { }
  20.  
  21. internal class ClaseNoGenerica { }
  22.  
  23. internal class PropiedadIsGenericType
  24. {
  25. public static void Main()
  26. {
  27. Console.WriteLine(typeof(ClaseGenerica<>).IsGenericType.ToString());
  28. Console.WriteLine(typeof(ClaseNoGenerica).IsGenericType.ToString());
  29. }
  30. }
  31. }
Success #stdin #stdout 0.02s 33856KB
stdin
Standard input is empty
stdout
True
False