About multi level and multiple inheritance how to achieve in
.net ?
Answer Posted / senthil kumar
.net supports directly to the multi level
inheritance.but .net doesnot support the multiple
inheritance directly instead of that we use interface used.
for example,multilevel inheritance
class a
{
-----
-----
-----
}
class b : a
{
-----
-----
-----
}
class c : b
{
----
----
----
}
multiple inheritance - interface
--------------------------------
interface a
{
-----
-----
-----
}
| Is This Answer Correct ? | 12 Yes | 1 No |
Post New Answer View All Answers
Describe the overview of clr integration.
Define constructor in c#.
What is private constructor c#?
what is a structure in c#
What is disconnected data architecture in c#?
What is desktop example?
What is serialization in .net?
How to assign Null value to Var?
What is a cs file?
What does || mean in programming?
What is the difference between C# 3.5 and C# 4.0?
What is the difference between dictionary and hashtable in c#?
How does bitwise xor work?
What is the usage of transponders?
What is the use of return in c#?