fork download
  1. // ===++===
  2. //
  3. // OrtizOL
  4. //
  5. // ===--===
  6. /*============================================================
  7. //
  8. // Clase: RepresentacionGenerica.cs
  9. //
  10. // Propósito: Demostración del método ToString en la clase
  11. // object.
  12. //
  13. ============================================================*/
  14.  
  15. using System;
  16.  
  17. public class RepresentacionGenerica
  18. {
  19. public static void Main()
  20. {
  21. Object obj = new Object();
  22.  
  23. Console.WriteLine(obj.ToString());
  24. }
  25. }
Success #stdin #stdout 0.02s 33776KB
stdin
Standard input is empty
stdout
System.Object