Mega Code Archive

 
Categories / C# / Development Class
 

Object ToString Method Returns a String that represents the current Object

using System; public class Sample {     public static void Main() {         Object o = new Object();         Console.WriteLine (o.ToString());     } }