Multiple Inheritance
Why multiple inheritance is not supported in c#??
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.
Mahesh ChandPosted Jan 24, 2021, 3:50 PM
Rajeev KumarPosted Mar 6, 2023, 1:31 PM
ambiguity issue....Class A{Public void show () { console.writeline("Show from class A"); } }Class B{Public void show (){console.writeline("show method from class b");}}Class C: class A, class B{ // which method call here..... //class A have a show method and class b have also same method so ambiguity problem is here};
Kiran MohantyPosted Jan 25, 2021, 4:38 AM
Priyanka SinghPosted Jan 24, 2021, 6:30 PM
Rijwan AnsariPosted Jan 24, 2021, 6:21 PM
Sachin SinghPosted Jan 24, 2021, 2:51 PM
Yogeshkumar HadiyaPosted Jan 24, 2021, 2:40 PM