What is the difference between Abstract and Interface?
Answers were Sorted based on User's Feedback
Answer / narendra mishra
Abstract->Abstract Method are the method without any
body.When derived class inherit the abstract method from
the abstract class It must override the abstract method.
Interface->Interface also define properties, method and
event which are known as the member of an interface.
Interface contain only the declaration of members.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / nikhila
Abstract class contain both complete and incomplete methods
The implementation for abstract methods will be in derived class. Access specifier will allow
Interface contains only incomplete methods.The implementation will be in other class.Access specifier will not allow.by default public can use
Is This Answer Correct ? | 0 Yes | 0 No |
What is the purpose of dependency injection?
What are methods c#?
Can overrride the Main method
In dynamic link library, which api is used for load library?
What is typeof undefined?
What is use of console?
OOPs concept ?
Why is xml called extensible?
Is c# strongly typed?
What can you do as a .net developer?
Do vs while c#?
write a C# Program add two matrix ?