CSharp - What is the output: expression-bodied properties

Question

What is the output from the following code

using System;

class MyClass
{
    private double radius = 10;
    public double Radius => radius;
    public double Area => 3.14 * radius * radius;
}
class Program
{
    static void Main(string[] args)
    {
        MyClass ob = new MyClass();
        Console.WriteLine("Area of the circle is {0} sq. unit", ob.Area);
        Console.ReadLine();
    }
}


Click to view the answer

Area of the circle is 314 sq. unit

Note

We have used expression-bodied properties.