- Properties and private set
- class Test
- {
- int Abc { private set; get; }
- }
- public int Abc { get; private set; }
- class Test
- {
- int Abc { get; set; }
- }
- class Test
- {
- public int Abc { get; private set; }
- }
- class Test
- {
- public int Abc1 { private set; get; }
- protected int Abc2 { private set; get; }
- internal int Abc3 { private set; get; }
- protected internal int Abc4 { private set; get; }
- }