c# Programming Glossary: descendant.test
Why does this work? Method overloading + method overriding + polymorphism http://stackoverflow.com/questions/1833216/why-does-this-work-method-overloading-method-overriding-polymorphism public override void Test String s Console.Out.WriteLine Descendant.Test String s public void Test Object s Console.Out.WriteLine Descendant.Test.. String s public void Test Object s Console.Out.WriteLine Descendant.Test Object s class Program static void Main string args Descendant.. d new Descendant So how would you actually manage to call Descendant.Test String then My first attempt looks like this public void Test..
|