Skip to content

Instantly share code, notes, and snippets.

@tnngo2
Created April 12, 2012 11:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tnngo2/2366821 to your computer and use it in GitHub Desktop.
Save tnngo2/2366821 to your computer and use it in GitHub Desktop.
class Base
{
public virtual void Method()
{
Console.WriteLine("Base");
}
}
class Derived:Base
{
public void Method()
{
Console.WriteLine("Derived");
}
static void Main(string[] args)
{
Base b = new Derived();
b.Method();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment