About multi level and multiple inheritance how to achieve in
.net ?
Answers were Sorted based on User's Feedback
.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 |
Answer / akila
we achive multilevel multiple inheritance in .net as like
java
Is This Answer Correct ? | 2 Yes | 1 No |
Why do we use delegates in c#?
Does C# supports multi-dimensional arrays?
what is the scope of anonymous type ?
Explain attributes in c#?
What are virtual classes in c#?
If a base class has a bunch of overloaded constructors, and an inherited class has another bunch of overloaded constructors, can you enforce a call from an inherited constructor to an arbitrary base constructor?
What is the difference between list and array in c#?
what is accessspecifier and explation each with example?
What is stringbuilder c#?
How Reflection is used and what it's significance ?
how can i return string by vilating duplicates(inpyt like asdfsda but output should be 2a2d2sf and 2a,2d,2s,f)
What is msil, and why should developers need an appreciation of it if at all?