I have to inherit my class from two classes say A & B.
How can i achieve this from C#?
Creating interface of any class is one idea for me but when i implement that class to i have to rewrite that method.
So please explain in detail regarding this.
Loading
RolandoPosted Apr 21, 2009, 2:21 PM
ClassA
ClassB
ClassC
Class ClassA{}
Class ClassB:ClassA {}
Class ClassC:ClassB{}