In C#, virtual methods support polymorphism, by using a combination of the virtual and override keywords. With the virtual keyword on the base class method and the override keyword on the method in the derived class, both methods are said to be virtual.
Methods that don‘t have either the virtual or override keywords, or that have the new keyword, are said to be non-virtual.
When a virtual method is invoked on an object, the run-time type of the object is used to determine which implementation of the method to use.
When a non-virtual method is invoked on an object, the compile-time type of the object is used to determine which implementation of the method to use.
【转载】The Difference Between Virtual and Non-Virtual Methods,布布扣,bubuko.com
【转载】The Difference Between Virtual and Non-Virtual Methods
原文:http://www.cnblogs.com/yuthreestone/p/3594873.html