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 / vijay sharma

We can use interfaces to achieve multiple inheritance
in .NET

Is This Answer Correct ?    49 Yes 2 No

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

Answer / vijay rana

with the help of interface we can achieve multiple
inheritense in csharp;

Is This Answer Correct ?    25 Yes 2 No

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

Answer / mahesh kotekar

The actual answer is. We cannot provide multiple
inheritance in C#. Multiple inheritance means having a
common implementation from two base class derived in the
child class which is not possible. Using interface we just
provide the prototype which we can implement in the derived
classing which provides a mimic of multiple inheritance. If
am wrong please let me know.
Thanks And Regards
Mahesh Kotekar

Is This Answer Correct ?    13 Yes 3 No

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

Answer / kamal

When we use the Multiple inheritance we use more than one
class. Lets one condition class A and class B are base
classes and class c is is multiple inherting it.And where
class c is inheriting a function .It may be possible that
this function with same name and same signature can present
in both class A and Class B . That time how the compiler
will know that which function it should take whether from
class A or class B.So Multiple inheritance show's an error.

Is This Answer Correct ?    7 Yes 3 No

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

Answer / ashish

Dear All,

Please help me I am confused with concept of interface.

Every book and every post says that multiple inheritance is
achived by interface as a class implement more then 1
interfacet, but is it really a multiple inheriance ?

Inteface just provides prototype and not any
functionality , so even if class implements more then one
inteface class has to write its code to implement it and if
any other class is also implemnting interface that class
also has to write code to implemnt it , so how multiple
inheritance is achieved.

Is This Answer Correct ?    5 Yes 2 No

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

Answer / adavesh

Ofcourse using interfaces !!!

Its not just implementing 2 or more than one interfaces.
Its more than that. Lemme explain with a sample example

public namespace AccountManagement
{
public interface ICalcInterestOnLoan
{
double GetInterestOnLoan(double
dloanAmount);
}

public interface ICalcInterestOnDeposit
{
double GetInterestOnDeposit(double
dPrincipleAmount);
}

class LoanManager: ICalcInterestOnLoan
{
double GetInterestOnLoan(double dloanAmount)
{
//NOTE: All logic for calculating loan
interest goes here
}
}

class PrincipleManager: ICalcInterestOnDeposit
{
double GetInterestOnDeposit(double
dPrincipleAmount)
{
//NOTE: All logic for calculating
deposit interest goes here
}
}

public class AccountManager:ICalcInterestOnLoan,
ICalcInterestOnDeposit
{
ICalcInterestOnLoan oLoanInterest = new
LoanManager();
ICalcInterestOnDeposit oDepositInterest = new
PrincipleManager();
double GetInterestOnLoan(double dloanAmount)
{
return oLoanInterest.GetInterestOnLoan
(dLoanAmount);
}

double GetInterestOnDeposit(double
dPrincipleAmount)
{
return
oDepositInterest.GetInterestOnDeposit(dPrincipleAmount);
}
}

}//namespace ends


Here PrincipleManager & LoanManager are internal classes.
So, external assemblies do not know those classes. The
class AccountManager indirectly inherits the
functionalities of two classes & hence multiple inheritance
is achieved

Kote... got it ?

Is This Answer Correct ?    6 Yes 3 No

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

Answer / phaniram.h

by appling interface keyword to the base class we can
implement multiple inheritance in .NET

Is This Answer Correct ?    11 Yes 10 No

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

Answer / cnu

Multiple inheritance means having more than 2 classes at
base level and only one class is derived from them.

In two cases only we can implement inheritance.

1.If we have maximum one class and minimum one interface at
base level.(its not possible in java).

2.If we have two or more interfaces at base level.

Is This Answer Correct ?    1 Yes 0 No

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

Answer / pawan kumar tiwari

Inteface just provides prototype and not any
functionality , so even if class implements more then one
inteface class has to write its code to implement it and if
any other class is also implemnting interface that class
also has to write code to implemnt it , so how multiple
inheritance is achieved.

Is This Answer Correct ?    1 Yes 1 No

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

Answer / ranjanatyagi

By using multiple Inheritence.

Is This Answer Correct ?    6 Yes 29 No

Post New Answer

More C Sharp Interview Questions

What is data set in c#?

0 Answers  


What does console readline do?

0 Answers  


Is c# still popular?

0 Answers  


What are Custom Control and User Control?

1 Answers  


How do I create a multilanguage?

0 Answers  






How we can create an array with non-default values?

0 Answers  


Code to run exe like mspaint,autocad etc in asp.net.

2 Answers  


What is type casting. Explain it with reference to classes.

2 Answers   HCL, JPMorgan Chase,


What debugging tools come with the .NET ssSDK?

0 Answers   Siebel,


What is difference between the "throw" and "throw ex" in .net?

0 Answers  


What are properties in C#?

0 Answers   UGC Corporation,


What is a console operator?

0 Answers  


Categories