"-- .Net only permits for single-level inheritance model "
Your inheritance hierarchy can be as deep as you want, i.e., base < derived1 < derived2 < derived3
I think what you are getting at is that .Net only supports single inheritance, which means that a class can only inherit directly from one other class. i.e, you can't do base1, base2 < derived1
...
Leave a comment: