Skip to content

Instantly share code, notes, and snippets.

@karthikeyanVK
Created October 11, 2016 09:08
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/30d09d5dcd70d6e745778847d28540a3 to your computer and use it in GitHub Desktop.
Save karthikeyanVK/30d09d5dcd70d6e745778847d28540a3 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