3 writes to _template
ILCompiler.TypeSystem (3)
parent\parent\Common\TypeSystem\Common\MethodDesc.cs (3)
409
_template
= template;
458
_template
= null;
476
_template
= new MethodSignature(_flags, _genericParameterCount, _returnType, _parameters, _embeddedSignatureData);
9 references to _template
ILCompiler.TypeSystem (9)
parent\parent\Common\TypeSystem\Common\MethodDesc.cs (9)
442
if (
_template
!= null && _parameters ==
_template
._parameters)
469
if (
_template
== null ||
470
_flags !=
_template
._flags ||
471
_genericParameterCount !=
_template
._genericParameterCount ||
472
_returnType !=
_template
._returnType ||
473
_parameters !=
_template
._parameters ||
474
_embeddedSignatureData !=
_template
._embeddedSignatureData)
479
return
_template
;