what does inheritance in c# mean code example
Example 1: c# inheritance
class parent_class
{
}
class child_class : parent_class
{
//Will simply move Data and Methods from the parent_class to the child class.
}
Example 2: inheritance in c#
// Parent Class
public class A
{
public void Method1()
{
// Method implementation.
}
}
// inherit class A in class B , which makes B the child class of A
public class B : A
{ }
public class Example
{
public static void Main()
{
B b = new B();
// It will call the parent class method
b.Method1();
}
}