Inheritance in dot NET
A class inherits the members of its direct base class. Inheritance means that a class implicitly contains all members of its direct base classexcept for the instance constructors, distructors and...
View ArticleMultiple Inheritance Support in NET
Multiple Inheritance Support in NET C++ supports multiple inheritance, but C# and VB.NET don’t. They follow the Java path by allowing inheritance from only a single base class. An inheritance...
View ArticleInheritance in .NET
Inheritance in .NET A class inherits the members of its direct base class. Inheritance means that a class implicitly contains all members of its direct base classexcept for the instance constructors,...
View ArticleDerived Class
Derived Class Inheritance Inheritance feature offers to derive a new class from an existing one and acquire all the feature of the existing class. The new class which get the feature from existing...
View ArticlePrinciples of OOPS
Principles of OOPS There are Four Main Principals of OOPS which are called Polymorphism, Data Abstraction, Inheritance and Encapsulation. Polymorphism Polymorphism is another strong feature of OOPS. It...
View Article