9 instantiations of CustomAttributeWrapper
System.Reflection.Emit (9)
System\Reflection\Emit\EventBuilderImpl.cs (1)
63_customAttributes.Add(new CustomAttributeWrapper(con, binaryAttribute));
System\Reflection\Emit\FieldBuilderImpl.cs (1)
77_customAttributes.Add(new CustomAttributeWrapper(con, binaryAttribute));
System\Reflection\Emit\GenericTypeParameterBuilderImpl.cs (1)
54_customAttributes.Add(new CustomAttributeWrapper(con, binaryAttribute));
System\Reflection\Emit\MethodBuilderImpl.cs (1)
206_customAttributes.Add(new CustomAttributeWrapper(con, binaryAttribute));
System\Reflection\Emit\ModuleBuilderImpl.cs (1)
1339_customAttributes.Add(new CustomAttributeWrapper(con, binaryAttribute));
System\Reflection\Emit\ParameterBuilderImpl.cs (1)
64_customAttributes.Add(new CustomAttributeWrapper(con, binaryAttribute));
System\Reflection\Emit\PersistedAssemblyBuilder.cs (1)
197_customAttributes.Add(new CustomAttributeWrapper(con, binaryAttribute));
System\Reflection\Emit\PropertyBuilderImpl.cs (1)
74_customAttributes.Add(new CustomAttributeWrapper(con, binaryAttribute));
System\Reflection\Emit\TypeBuilderImpl.cs (1)
500_customAttributes.Add(new CustomAttributeWrapper(con, binaryAttribute));
20 references to CustomAttributeWrapper
System.Reflection.Emit (20)
System\Reflection\Emit\EventBuilderImpl.cs (2)
21internal List<CustomAttributeWrapper>? _customAttributes; 62_customAttributes ??= new List<CustomAttributeWrapper>();
System\Reflection\Emit\FieldBuilderImpl.cs (2)
24internal List<CustomAttributeWrapper>? _customAttributes; 76_customAttributes ??= new List<CustomAttributeWrapper>();
System\Reflection\Emit\GenericTypeParameterBuilderImpl.cs (2)
20internal List<CustomAttributeWrapper>? _customAttributes; 53_customAttributes ??= new List<CustomAttributeWrapper>();
System\Reflection\Emit\MethodBuilderImpl.cs (2)
34internal List<CustomAttributeWrapper>? _customAttributes; 205_customAttributes ??= new List<CustomAttributeWrapper>();
System\Reflection\Emit\ModuleBuilderImpl.cs (4)
28private List<CustomAttributeWrapper>? _customAttributes; 679internal void WriteCustomAttributes(List<CustomAttributeWrapper>? customAttributes, EntityHandle parent) 683foreach (CustomAttributeWrapper customAttribute in customAttributes) 1338_customAttributes ??= new List<CustomAttributeWrapper>();
System\Reflection\Emit\ParameterBuilderImpl.cs (2)
15internal List<CustomAttributeWrapper>? _customAttributes; 63_customAttributes ??= new List<CustomAttributeWrapper>();
System\Reflection\Emit\PersistedAssemblyBuilder.cs (2)
23internal List<CustomAttributeWrapper>? _customAttributes; 196_customAttributes ??= new List<CustomAttributeWrapper>();
System\Reflection\Emit\PropertyBuilderImpl.cs (2)
26internal List<CustomAttributeWrapper>? _customAttributes; 73_customAttributes ??= new List<CustomAttributeWrapper>();
System\Reflection\Emit\TypeBuilderImpl.cs (2)
41internal List<CustomAttributeWrapper>? _customAttributes; 499_customAttributes ??= new List<CustomAttributeWrapper>();