2 writes to m_parameterTypes
mscorlib (2)
system\reflection\emit\dynamicmethod.cs (2)
359m_parameterTypes = new RuntimeType[signature.Length]; 369m_parameterTypes = new RuntimeType[0];
9 references to m_parameterTypes
mscorlib (9)
system\reflection\emit\dynamicmethod.cs (9)
363m_parameterTypes[i] = signature[i].UnderlyingSystemType as RuntimeType; 364if ( m_parameterTypes[i] == null || !(m_parameterTypes[i] is RuntimeType) || m_parameterTypes[i] == (RuntimeType)typeof(void) ) 730this.m_methodHandle, m_parameterTypes, m_returnType, CallingConvention); 778if (position < 0 || position > m_parameterTypes.Length) 809null, CallingConvention, ReturnType, null, null, m_parameterTypes, null, null).GetSignature(true); 826null, CallingConvention, ReturnType, null, null, m_parameterTypes, null, null).GetSignature(true); 998Type[] parameterTypes = m_owner.m_parameterTypes;