public class Person
{
private string message;
public override string ToString()
{
return message;
}
public static Person CreateEmployee()
{
return new Employee();
}
class Employee : Person
{
public Employee()
{
this.message = "I inherit private members!";
}
}
}
Run this within a Console application, and it will print the message on the screen: “I inherit private members!”
class Program
{
static void Main()
{
Console.WriteLine(Person.CreateEmployee());
}
}
Proof positive that private members are actually inherited. Remember, modifiers such as public, protected, private, and internal are all accessibility modifiers. These modifiers affect encapsulation rather than inheritance.
Read more: KodefuGuru