Why multiple Inheritence is not used in C#?
Answer Posted / ashwi ni chavan
A
/ \
B C
\ /
D
here D get the 2 copy's of A first copy get from B then
second copy get from C .
In class D name collision problem occure means two method's
or data member has same name occure in D class.thats why get
confusion of that's method's this promblem is also called as
Diamond problem........this problem solved using the
interface concept .
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Define parsing?
What is #region in c#?
Which is faster list or dictionary in c#?
What is function and method in c#?
What does ienumerable mean?
What are the fundamental principles of oo programming?
Can a abstract class have a constructor?
Can hashtable have duplicate keys in c#?
How do I get deterministic finalization in c#?
What is cshtml?
What is boxing and unboxing in c#?
What is delimiter in c#?
What do you know about device context?
What is the system namespace?
Why singleton is sealed?