Class Inheritance
Is it possible for a class in C# to inherit from more than one class. If yes, I need to know how?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
RakeshPosted Jun 14, 2015, 7:45 AM
Kingstone JobPosted Jun 15, 2015, 1:30 PM
Kingstone JobPosted Jun 15, 2015, 1:29 PM
Afzaal Ahmad ZeeshanPosted Jun 14, 2015, 6:56 AM
public class ChildClass : ParentClass, Interface1, Interface2 {// members
}