An abstract class is inherited, an Interface also
inherited(multiple inheritance), How it differences.
Answer Posted / priya arun
abstract class is just like a normal class ,but we can't
instantiate an abstract class.
One class can inherit one abstract class.
but interface is just define the signature..it doesnt have
any body.So the methods declared in the interface must
implement in the derived class.
Once we defined the interface any number of class can
implement it...
a class can implement more than one interface also.Through
this also we can achieve multiple inheritance in .net.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why are c# strings immutable?
Are arrays value types or reference types?
What is local function?
What do you mean by synchronous and asynchronous operations?
Is class reference type c#?
Explain the working of serialization?
What is super class in c#?
What is array and types of array in c#?
hi, is compulsory .net knowledge need for biztalk server training. if need, how far?.tell me some info abt real time instructors in hyd or other?
Are structs value types c#?
hi all.... i need code snippets for store and retrive tiff fromat images in sqlserver....... kindy provide it.......
What is generic types in c#?
When do we generally use destructors to release resources?
What are async and await?
Is multilevel inheritance possible in c#?