Inherit 2 classes in c#
C#
2
Posts
2
Posters
0
Views
1
Watching
-
Just wondering how to inherit 2 classes in c#? Anyone there could provide some example code? :confused:
If you're referring to multiple inheritence (mi), it is not supported in C#. However, in addition to inheriting from a single class you can also inherit from as many interfaces as you like. Cheers, Tom Archer Author, Inside C#