Created
April 26, 2014 01:17
-
-
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#.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ===++=== | |
// | |
// 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