Difference between Interface, abstract class, sealed class, static class and partial class in c#? If all classes available in vb.net?
|
closed as not constructive by animuson, gnat, EdChum, partlov, Alies Belik Feb 26 at 9:26
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
Yes, they are all available in both C# and VB, although VB uses different keywords in some cases. |
|||
|
|
|
||||
|
|
|
Following are the difference between abstract and interface,
|
||||
|
|
|
I guess following link will be useful for you. http://devworkexperience.com/2011/09/interfaces-vs-abstract-classes/ the basic logical difference is you create abstract class when there is a relation between two classes that will inherit the abstract class and you create interface for the classes which are not related to each other but do have some common functionality. |
|||
|
|
|
A 'normal' class can be instantiated at runtime to form an Object with fields (fields are properties, functions, events, etc). A 'normal' class can also be inherited/sub-classed. Adding one of the extra keywords change the way the class works.
Interfaces are 'contracts' that say an implementing class will supply some functionality. The |
||||
|
|
|
In abstract class can provide more functionality without affecting child class. In interface,if we add any method to interface ,then it will affect all the child class. |
|||||
|