1 write to _parameterTypes
Microsoft.Diagnostics.DataContractReader.Contracts (1)
src\runtime\src\coreclr\tools\Common\CallingConvention\ArgIterator.cs (1)
191_parameterTypes = parameterTypes;
17 references to _parameterTypes
Microsoft.Diagnostics.DataContractReader.Contracts (17)
src\runtime\src\coreclr\tools\Common\CallingConvention\ArgIterator.cs (17)
212if (_parameterTypes == null) 213return other._parameterTypes == null; 215if (other._parameterTypes == null || _parameterTypes.Length != other._parameterTypes.Length) 218for (int i = 0; i < _parameterTypes.Length; i++) 219if (!_parameterTypes[i].Equals(other._parameterTypes[i])) 233if (_parameterTypes != null) 235for (int i = 0; i < _parameterTypes.Length; i++) 236hashcode = hashcode * 31 + _parameterTypes[i].GetHashCode(); 244public int NumFixedArgs() { return _parameterTypes != null ? _parameterTypes.Length : 0; } 249thArgType = _parameterTypes[argNum]; 256return (argNum < _parameterTypes.Length && _parameterTypes[argNum].GetCorElementType() == CorElementType.ELEMENT_TYPE_BYREF) ? 257_parameterTypes[argNum] :