C# Program using public-private and protected


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
     } 
}

Example: How to implement public-private and protected in C#.

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();
	}
}

Output:

The value is:10