adspace


What is the concept of inheritance and how it works in .net?

Answer Posted / Ranjeet Kumar Das

Inheritance is a fundamental object-oriented programming (OOP) concept that allows one class (derived or child class) to inherit properties and methods from another class (base or parent class). In .NET, classes can inherit the characteristics of other classes, reducing code duplication. The derived class extends the functionality of the base class by adding new members, overriding existing ones, or providing a different implementation.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write the .net syntax for 'while loop'?

1143