What?s the difference between an interface and abstract class?
Answer Posted / umesh
In the interface all methods must be abstract; in the
abstract class some methods can be concrete. In the
interface no accessibility modifiers are allowed, which is
ok in abstract classes.
| Is This Answer Correct ? | 10 Yes | 0 No |
Post New Answer View All Answers
What does protected internal access modifier mean?
What is the syntax for calling an overloaded constructor within a constructor?
What is action c#?
What is the data provider name to connect to access database?
Can you declare a class or a struct as constant?
What happens when thread sleep () method is called?
Can bool be null c#?
How do you serialize an object?
I was trying to use an out int parameter in one of my functions. How should I declare the variable that I am passing to it?
Is unboxing an implicit conversion?
What are extender provider components?
What does firstordefault mean in c#?
What is use of singleton class in c#?
Where’s global assembly cache located on the system?
Is stringbuilder faster than string concatenation c#?