static void Main(string[] args)
    {
        BaseClass b = new Derived("fred");

        object clone = b.Clone();

        Console.WriteLine(clone.ToString());
    }