5 writes to attributes
System (5)
compmod\system\componentmodel\MemberDescriptor.cs (5)
69
this.
attributes
= attributes;
91
this.
attributes
= new Attribute[descr.Attributes.Count];
125
this.
attributes
= new Attribute[ newArray.Count ];
146
attributes
= value;
409
attributes
= newAttributes;
15 references to attributes
System (15)
compmod\system\componentmodel\MemberDescriptor.cs (15)
73
this.originalAttributes = this.
attributes
;
92
descr.Attributes.CopyTo(this.
attributes
, 0);
96
this.originalAttributes = this.
attributes
;
126
newArray.CopyTo( this.
attributes
, 0);
129
this.originalAttributes = this.
attributes
;
142
return
attributes
;
344
if ((mdObj.
attributes
== null) != (
attributes
== null)) {
350
if (
attributes
!= null) {
351
if (
attributes
.Length != mdObj.
attributes
.Length) {
354
for (int i = 0; i <
attributes
.Length; i++) {
355
if (!
attributes
[i].Equals(mdObj.
attributes
[i])) {
396
list = new ArrayList(
attributes
);