Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created April 26, 2014 01:17
Show Gist options
  • Save Fhernd/11309071 to your computer and use it in GitHub Desktop.
Save Fhernd/11309071 to your computer and use it in GitHub Desktop.
Demostración básica del método ToString en la clase object en C#.
// ===++===
//
// 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());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment