How do you implement inheritance in .NET?- Inheritance makes program easier and maintain an application. - In C#.NET, we implement using " : ". - In VB.Net we implement using "Inherits" keyword. - It has the ability to use all the functionality of an existing class and extend those capabilities without re-writing the original class. - It is mostly used to avoid writing the same code again and again.
|