what is the purpose of interface in c#.net

Answers were Sorted based on User's Feedback



what is the purpose of interface in c#.net..

Answer / sushil

To Achieve Multiple Inheritance

Is This Answer Correct ?    13 Yes 0 No

what is the purpose of interface in c#.net..

Answer / prince1987

To Providing control on the Classes

Is This Answer Correct ?    12 Yes 4 No

what is the purpose of interface in c#.net..

Answer / ankit singh

The main purpose of the interface is implement multiple
inheritance in .net

Is This Answer Correct ?    6 Yes 0 No

what is the purpose of interface in c#.net..

Answer / vai bhav

Basicalluy interface is used in any oops supported langusge
like c#.net to overcome the problem of multiple inheritance
i.e. inheriting more than one classes which have same
function also.

Is This Answer Correct ?    4 Yes 0 No

what is the purpose of interface in c#.net..

Answer / n/a

The main purpose of the interface is to decsribe related
functionality that can belong to any class.

Is This Answer Correct ?    6 Yes 4 No

what is the purpose of interface in c#.net..

Answer / mayur teli

Basic purpose is to use the defined structure/pattern of common implementation on the child location.
In other word we can say that when multiple people are working on same project if they need to use some common functionality (like initializing variables for their module) instead of writing their own method name(like init(), initialize(), setup()) if we write single method name (lets say init) then this method name can be implemented by any developer who derived....
and use to achieve multiple inheritance.

Is This Answer Correct ?    2 Yes 2 No

Post New Answer

More C Sharp Interview Questions

What is marshalling in c#?

1 Answers  


Why we use extension method in c#?

1 Answers  


What is a cs file?

1 Answers  


What are the types of class in c#?

1 Answers  


What operators can be used to cast from one reference type to another without the risk of throwing an exception?

1 Answers  


What do you mean by synchronous and asynchronous operations?

1 Answers  


What is a multicast delegate in c#?

1 Answers  


What is the partial class in C# What is the use of partial class in C#?

6 Answers   CTS,


What types of object can I throw as exceptions?

1 Answers  


What is an object and a class?

1 Answers  


What is the difference between ienumerable and iqueryable?

1 Answers  


What is thread.sleep()?

1 Answers  


Categories