5 writes to _attributes
System.ComponentModel.TypeConverter (5)
System\ComponentModel\MemberDescriptor.cs (5)
56
_attributes
= attributes;
74
_attributes
= new Attribute[descr.Attributes.Count];
113
_attributes
= new Attribute[newList.Count];
135
_attributes
= value;
371
_attributes
= newAttributes;
15 references to _attributes
System.ComponentModel.TypeConverter (15)
System\ComponentModel\MemberDescriptor.cs (15)
60
_originalAttributes =
_attributes
;
75
descr.Attributes.CopyTo(
_attributes
, 0);
79
_originalAttributes =
_attributes
;
114
newList.CopyTo(
_attributes
, 0);
117
_originalAttributes =
_attributes
;
129
return
_attributes
;
280
if ((mdObj.
_attributes
== null) != (
_attributes
== null))
287
if (
_attributes
!= null)
289
if (
_attributes
.Length != mdObj.
_attributes
!.Length)
293
for (int i = 0; i <
_attributes
.Length; i++)
295
if (!
_attributes
[i].Equals(mdObj.
_attributes
[i]))
342
list = new List<Attribute>(
_attributes
!);