Answer:
Step-by-step explanation:
The following code is in C# Language
public class Circle
{
private float radius;
public float Radius
{
get { return radius; }
set { radius = value; }
}
public void GetArea()
{
Console.WriteLine("The area of the circle is ", Math.PI* Radius *Radius);
}