Inheritance in dotnet framework
Loading
Inheritance in dotnet framework
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Vijay KumariPosted May 27, 2025, 12:14 PM
Inheritance is an object-oriented concept that lets a derived class reuse (inherit) the fields, properties, and methods of a base class, promoting code reusability and a clear class hierarchy. In .NET you get:
Code Example
Kiran KumarPosted May 28, 2025, 9:38 AM
Hi Vijaya got it thanks but can you provide some good example since I am implementing financial application , for Banking application can I use this feature
Deepak TewatiaPosted May 27, 2025, 6:44 AM
One class can take features from another class.