2 writes to m_ctorParams
System.Private.CoreLib (2)
src\System\Reflection\RuntimeCustomAttributeData.cs (2)
266m_ctorParams = new CustomAttributeCtorParameter[parameters.Length]; 272m_ctorParams = Array.Empty<CustomAttributeCtorParameter>();
5 references to m_ctorParams
System.Private.CoreLib (5)
src\System\Reflection\RuntimeCustomAttributeData.cs (5)
268m_ctorParams[i] = new CustomAttributeCtorParameter(new CustomAttributeType((RuntimeType)parameters[i].ParameterType)); 298CustomAttributeEncodedArgument.ParseAttributeArguments(blob, m_ctorParams, m_namedParams, m_scope); 423if (m_ctorParams.Length != 0) 425CustomAttributeTypedArgument[] typedCtorArgs = new CustomAttributeTypedArgument[m_ctorParams.Length]; 429CustomAttributeEncodedArgument encodedArg = m_ctorParams[i].EncodedArgument!;