Ryan,
>In base class itself, how to make sure
>
>this.Test() will just call implementation in base class only?
You can't, that would defeat the purpose of virtual methods. Instead
you can move the base class' implementation of the Test method to
another, not-virtual method (say TestImpl). Call TestImpl from from
Test and call TestImpl directly if you want non-virtual behaviour.
Mattias
--
Mattias Sjögren [C# MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ |
http://www.dotnetinterop.com
Please reply only to the newsgroup.