Y go for Interface? What is use of interface?
Answers were Sorted based on User's Feedback
Answer / purushotham .tella
An Interface is a collection of semantically related
abstract members.Used To Support Multiple Inheritance
Is This Answer Correct ? | 6 Yes | 0 No |
Answer / venkat2050
interfaces is in concept of late binding which happen at
runtime which a part in OOPs concept
the interface has indexes of abstact
it should in public
Is This Answer Correct ? | 4 Yes | 2 No |
We will go for an interface when we want to implement a
specific behaviour.
ex:
1.My class x implements IDisposable interface to handle
cleaup operation. I have to implement that behaviour by
implementing the method interface method Dispose()
explicitly in my code.
class x:IDisposable
{}
2.My class y implements IComparable interface to implement
sorting between a list of objects created of type y. Here I
have to implement CompareTo method.
Is This Answer Correct ? | 3 Yes | 1 No |
Why do we use dictionary in c#?
How do I type a whitespace character?
What is a string? What are the properties of a string class?
Explain manifest in c#.
What is difference between list and dictionary in c#?
how to cleanup object that does not support dispose method? How to implement dispose for such scenarios?
What is a datacontract?
What is the default value of date?
Explain About the Sattilite Assembly in .Net Technology?
Is void a class?
What's c# ?
When should you use generics?