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