Possible Duplicate:
Why is Multiple Inheritance not allowed in Java or C#?
Question: Do C# support multiple inheritance?
Answer: Yes, with the use of interface.
Now My Qusetion: If we inherit a interface then we have to implement it. So we are writing our own code then how we are using the core concept of inheritance that is reusibility by inheriting interface.
So it seens to be that multiple inheritance via interface is useless. If I am wrong then how multiple inheritance via interface is useful?