10 references to MemberDefinitionCollection
Mono.Cecil (10)
Mono.Cecil\AssemblyReader.cs (5)
892
return new
MemberDefinitionCollection
<TypeDefinition> (type);
1272
return new
MemberDefinitionCollection
<FieldDefinition> (type);
1461
return new
MemberDefinitionCollection
<EventDefinition> (type);
1531
return new
MemberDefinitionCollection
<PropertyDefinition> (type);
1729
return new
MemberDefinitionCollection
<MethodDefinition> (type);
Mono.Cecil\TypeDefinition.cs (5)
158
Interlocked.CompareExchange (ref nested_types, new
MemberDefinitionCollection
<TypeDefinition> (this), null);
180
Interlocked.CompareExchange (ref methods, new
MemberDefinitionCollection
<MethodDefinition> (this) , null);
202
Interlocked.CompareExchange (ref fields, new
MemberDefinitionCollection
<FieldDefinition> (this), null);
224
Interlocked.CompareExchange (ref events, new
MemberDefinitionCollection
<EventDefinition> (this), null);
246
Interlocked.CompareExchange (ref properties, new
MemberDefinitionCollection
<PropertyDefinition> (this), null);