Answers for "c# accessors"

C#
1

c# accessors

private string _name = "Hello";

public string Name
{
    get
    {
        return _name;
    }
    protected set
    {
        _name = value;
    }
}
Posted by: Guest on October-05-2020
0

get setter c# model

Person person = new Person();
person.Name = "Joe";  // the set accessor is invoked here

System.Console.Write(person.Name);  // the get accessor is invoked here
Posted by: Guest on April-30-2020

C# Answers by Framework

Browse Popular Code Answers by Language