82.

Which is the result of the following code :

public class Person
{
    private string name;
    public string Name
    {
        get { return name; }
        protected set { name = value; }
    }
}

The get and set portions of a property or indexer are called accessors. By default these accessors have the same visibility, or access level: that of the property or indexer to which they belong. For more information, see accessibility levels. However, it is sometimes useful to restrict access to one of these accessors. Typically, this involves restricting the accessibility of the set accessor, while keeping the get accessor publicly accessible