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()); } }