2 writes to m_namedParams
mscorlib (2)
system\reflection\customattribute.cs (2)
382
m_namedParams
= new CustomAttributeNamedParameter[properties.Length + fields.Length];
394
CustomAttributeEncodedArgument.ParseAttributeArguments(caRecord.blob, ref m_ctorParams, ref
m_namedParams
, m_scope);
8 references to m_namedParams
mscorlib (8)
system\reflection\customattribute.cs (8)
384
m_namedParams
[i] = new CustomAttributeNamedParameter(
387
m_namedParams
[i + fields.Length] = new CustomAttributeNamedParameter(
559
if (
m_namedParams
== null)
563
for (int i = 0; i <
m_namedParams
.Length; i++)
565
if (
m_namedParams
[i].EncodedArgument.CustomAttributeType.EncodedType != CustomAttributeEncoding.Undefined)
571
for (int i = 0, j = 0; i <
m_namedParams
.Length; i++)
573
if (
m_namedParams
[i].EncodedArgument.CustomAttributeType.EncodedType != CustomAttributeEncoding.Undefined)
575
m_members[i], new CustomAttributeTypedArgument(m_scope,
m_namedParams
[i].EncodedArgument));