How do you implement multiple inheritance in .NET?

Answers were Sorted based on User's Feedback



How do you implement multiple inheritance in .NET?..

Answer / swapna

Using interfaces we can implement multiple inheritance
in .net.

Is This Answer Correct ?    13 Yes 0 No

How do you implement multiple inheritance in .NET?..

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

How do you implement multiple inheritance in .NET?..

Answer / deep

USING INTERFACE

Is This Answer Correct ?    8 Yes 1 No

How do you implement multiple inheritance in .NET?..

Answer / kamlesh sharma

use of interfaces

Is This Answer Correct ?    6 Yes 1 No

How do you implement multiple inheritance in .NET?..

Answer / mohamed ali

using of interface we do the multiple inheritance in .net

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More C Sharp Interview Questions

Why do we need serialization?

0 Answers  


How to create multi-dimensional array?

0 Answers   C DAC, CDAC,


Can an Assembly have multiple versions

13 Answers   TCS,


Explain the difference between access specifier and access modifier in c#?

0 Answers  


what is IFormatable

0 Answers   Wipro,






What is the difference between System.String and System.StringBuilder classes?

9 Answers  


What is marshalling in c#?

0 Answers  


What is ilist c#?

0 Answers  


Can list contain duplicates c#?

0 Answers  


What is bitwise operator in c#?

0 Answers  


What is the difference between const and readonly in c#.net?

0 Answers  


if we are updating a database using thread, and mean while application crashes or thread being aborted then what will happen in Database? Rollback or Database will be updated? Please explain with different scenario.

0 Answers  


Categories