2 writes to _parameterTypes
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\DynamicMethod.cs (2)
233_parameterTypes = new RuntimeType[signature.Length]; 245_parameterTypes = Array.Empty<RuntimeType>();
11 references to _parameterTypes
System.Private.CoreLib (11)
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\DynamicMethod.cs (7)
209[MemberNotNull(nameof(_parameterTypes))] 238_parameterTypes[i] = (signature[i].UnderlyingSystemType as RuntimeType)!; 239if (_parameterTypes[i] == null || _parameterTypes[i] == typeof(void)) 387if (position < 0 || position > _parameterTypes.Length) 411internal RuntimeType[] ArgumentTypes => _parameterTypes; 417Type[] parameterTypes = _parameterTypes;
src\System\Reflection\Emit\DynamicMethod.CoreCLR.cs (4)
106Debug.Assert(_parameterTypes != null); 108Signature newSig = new Signature(_methodHandle, _parameterTypes, _returnType, CallingConvention); 151null, CallingConvention, ReturnType, null, null, _parameterTypes, null, null).GetSignature(true); 162null, CallingConvention, ReturnType, null, null, _parameterTypes, null, null).GetSignature(true);