3 writes to _browsableAttributes
System.Windows.Forms (3)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\SingleSelectRootGridEntry.cs (3)
59
get =>
_browsableAttributes
??= new(BrowsableAttribute.Yes);
94
_browsableAttributes
= value;
215
public void ResetBrowsableAttributes() =>
_browsableAttributes
= new(BrowsableAttribute.Yes);
4 references to _browsableAttributes
System.Windows.Forms (4)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\SingleSelectRootGridEntry.cs (4)
70
if (
_browsableAttributes
is not null && value is not null &&
_browsableAttributes
.Count == value.Count)
72
var currentAttributes = new Attribute[
_browsableAttributes
.Count];
75
_browsableAttributes
.CopyTo(currentAttributes, 0);