Skip to content

Instantly share code, notes, and snippets.

@karthikeyanVK
Created October 18, 2016 05:23
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 karthikeyanVK/0655afa0d301e930949274f83d2f1822 to your computer and use it in GitHub Desktop.
Save karthikeyanVK/0655afa0d301e930949274f83d2f1822 to your computer and use it in GitHub Desktop.
public class Car
{
public virtual void Drive()
{
Console.WriteLine("Car Drive");
}
}
public class Toyota : Car
{
public override void Drive()
{
Console.WriteLine("Toyota Drive");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment