1 write to _parameters
ILCompiler.TypeSystem (1)
parent\parent\Common\TypeSystem\Common\MethodDesc.cs (1)
80
_parameters
= parameters;
20 references to _parameters
ILCompiler.TypeSystem (20)
parent\parent\Common\TypeSystem\Common\MethodDesc.cs (14)
92
TypeDesc[] newParameters =
_parameters
; // Re-use existing array until conflict appears
97
newParameters = (TypeDesc[])
_parameters
.Clone();
108
newParameters = (TypeDesc[])
_parameters
.Clone();
172
return
_parameters
[index];
183
return
_parameters
.Length;
292
if (this.
_parameters
.Length != otherSignature.
_parameters
.Length)
295
for (int i = 0; i < this.
_parameters
.Length; i++)
297
if (!IsTypeEqualHelper(this.
_parameters
[i], otherSignature.
_parameters
[i], allowEquivalence, visited))
361
return TypeHashingAlgorithms.ComputeMethodSignatureHashCode(_returnType.GetHashCode(),
_parameters
);
414
_parameters = template.
_parameters
;
442
if (_template != null && _parameters == _template.
_parameters
)
473
_parameters != _template.
_parameters
||
parent\parent\Common\TypeSystem\Common\MethodDesc.ToString.cs (1)
26
foreach (TypeDesc param in
_parameters
)
parent\parent\Common\TypeSystem\Sorting\MethodSignature.Sorting.cs (5)
11
int result =
_parameters
.Length.CompareTo(other.
_parameters
.Length);
29
for (int i = 0; i <
_parameters
.Length; i++)
31
result = comparer.Compare(
_parameters
[i], other.
_parameters
[i]);