How do you implement multiple inheritance in .NET?
Answers were Sorted based on User's Feedback
Answer / shadab
To implement multiple inheritance in .net we will have to
use Interface...
see the below program..
using System;
interface Ifirst
{
void display();
}
class use:Ifirst
{
public void display()
{
Console.WriteLine("This is a method");
}
public static void Main()
{
use u=new use();
u.display();
}
}
----------
for more help visit my blog
http://www.shadab-programminghelp.blogspot.com
Is This Answer Correct ? | 8 Yes | 0 No |
Answer / mohamed ali
using of interface we do the multiple inheritance in .net
Is This Answer Correct ? | 3 Yes | 0 No |
What is assembly version series sequence?
What is multiple interface in c#?
If I have code like try { return; } catch { return; } finally { return; } from which block will the value will be returned. and try has been executed without any error.
what is object-oriented programming (oop) language?
What is delegates in c#?
What does firstordefault mean in c#?
How do I use the 'using' keyword with multiple objects?
Can we customize the serialization process?
Explain About .Net remoting
Define c# and list the features.
Why do we need collections in c#?
What are extensions methods in c#?