RE: how can create multiple inheritence inc#, with exa...
C# doesn't support Multiple Inheritance.
Bcoz there are lot of problems with multiple inheritance.
so u can have multiple inheritance with the help of Intefaces.
Say there is a class manager who is derived from class person but who also wants the functionality of class employee then he can have it using an interface.
But the methods inside the interface will not have any body.