2 writes to _optionalParameterIndex
Microsoft.CSharp (2)
Microsoft\CSharp\RuntimeBinder\Semantics\Symbols\MethodOrPropertySymbol.cs (2)
66
_optionalParameterIndex
= _defaultParameterIndex = _marshalAsIndex = Array.Empty<bool>();
73
_optionalParameterIndex
= new bool[count];
6 references to _optionalParameterIndex
Microsoft.CSharp (6)
Microsoft\CSharp\RuntimeBinder\Semantics\Symbols\MethodOrPropertySymbol.cs (6)
94
if (
_optionalParameterIndex
== null)
98
return
_optionalParameterIndex
[index];
103
Debug.Assert(
_optionalParameterIndex
!= null);
104
_optionalParameterIndex
[index] = true;
109
if (
_optionalParameterIndex
== null)
113
foreach (bool b in
_optionalParameterIndex
)