What is difference between Abstract Class and Interface?
Answer Posted / tarunkumar
Abstract class is a class in which it will contain both the
abstract and non-abstract methods.The abstract class must
be inheritable by another class. In vb.net it will be
defined using mustinheritable keyword.
The syntax is :
Public MustInheritable Class classname
Interface is a class in which it will contain only the
abstract methods. The interface can be implemented or not
by the another class.The functions in interface will be
implemented by the another class which implements the
interface.
The syntax is :
Public Interface interfacename
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain about the feature anonymous type?
How to store decimal data in .net?
Did vb6 support multi-threading ?
What is the feature anonymous type?
What is sealed class?
Which dll is used for microsoft .net run time?
What is the advantage of using system.text.stringbuilder over system.string?
What is the use of console application?
What is datatype conversion?
Define naming convention?
How do you call a stored procedure in Visual Basic?
What are the different types of applications supported in .net (or) .net framework?
Which class allows an element to be accessed using unique key?
Explain clr?
What is the difference between system.applicationexception class and system.systemexception?