2
Answers

C# Properties

Photo of Mayooran Navamany

Mayooran Navamany

3y
1.3k
1

Fill in the blanks to create a read-only property X. The return value of the accessor should be the square of x.

class A
{
    private int x=8;
    public int X
    {
        get { return x ____ x; }
    }
}

Answers (2)