4 writes to baseAttrs
System.Windows.Forms (4)
winforms\Managed\System\WinForms\ComponentModel\COM2Interop\COM2PropertyDescriptor.cs (4)
180this.baseAttrs = attrs; 236this.baseAttrs = new Attribute[attrList.Count]; 243baseAttrs = new Attribute[0]; 250baseAttrs = value;
7 references to baseAttrs
System.Windows.Forms (7)
winforms\Managed\System\WinForms\ComponentModel\COM2Interop\COM2PropertyDescriptor.cs (7)
225int baseCount = baseAttrs == null ? 0 : baseAttrs.Length; 230attrList.AddRange(baseAttrs); 239if (baseAttrs != null) { 240attrList.CopyTo(this.baseAttrs, 0); 247return baseAttrs; 697return new Com2PropertyDescriptor(this.dispid, this.Name, (Attribute[])this.baseAttrs.Clone(), this.readOnly, this.propertyType, this.typeData, this.hrHidden);