// ===++=== // // OrtizOL // // ===--=== /*============================================================ // // Clase: RepresentacionGenerica.cs // // Propósito: Demostración del método ToString en la clase // object. // ============================================================*/ using System; public class RepresentacionGenerica { public static void Main() { Object obj = new Object(); Console.WriteLine(obj.ToString()); } }