Use of Inheritance in C#
Use of Inheritance in C#
Why and when to use Inheritance? : One of my friend once asked me a question on inheritance that i will explain below. Consider a class below Class Base { int A; string str; public void test() { //Code... } } Class Derived: Base { int k; } In above code Derived class inherits Base class with...