Object.ToString Method Returns a String that represents the current Object. : System Object Method « Development Class « C# / C Sharp
- C# / C Sharp
- Development Class
- System Object Method
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());
}
}
Related examples in the same category