using System;
class MainClass
{
publicstaticvoid Main()
{
try
{
MainClass MyObject = new MainClass();
IFormattable Formattable;
Formattable = (IFormattable)MyObject;
// wait for user to acknowledge the results
Console.WriteLine("Hit Enter to terminate...");
Console.Read();
}
catch(InvalidCastException)
{
Console.WriteLine("MyObject does not implement the IFormattable interface.");
}
}
}