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