Closed bucurb closed 10 months ago
When documenting a class property with a getter / setter access modifier like below:
public class A { public int B { get; internal set; } }
The documentation generated with GeneratedAccessModifiers set to Public shows:
GeneratedAccessModifiers
Public
public bool B { get; set; }
The setter is marked as internal though, so it should read:
public bool B { get; }
When documenting a class property with a getter / setter access modifier like below:
The documentation generated with
GeneratedAccessModifiers
set toPublic
shows:A.B Property
The setter is marked as internal though, so it should read: