In this program, You will learn how to implement public-private and protected in C#.
public class A {
private int x = 10;
protected int display() {
//statement
}
}
using System;
public class A
{
private int x = 10;
protected int display()
{
return x;
}
}
public class B : A
{
public int y;
public void print()
{
y = display();
Console.WriteLine("The value is:" + y);
}
public static void Main(string[] args)
{
B t1 = new B();
t1.print();
}
}
The value is:10