7 types derived from NullableMethodCallInstruction
System.Linq.Expressions (7)
System\Linq\Expressions\Interpreter\TypeOperations.cs (7)
123
private sealed class HasValue :
NullableMethodCallInstruction
133
private sealed class GetValue :
NullableMethodCallInstruction
147
private sealed class GetValueOrDefault :
NullableMethodCallInstruction
172
private sealed class GetValueOrDefault1 :
NullableMethodCallInstruction
185
private sealed class EqualsClass :
NullableMethodCallInstruction
209
private sealed class ToStringClass :
NullableMethodCallInstruction
219
private sealed class GetHashCodeClass :
NullableMethodCallInstruction
5 references to NullableMethodCallInstruction
System.Linq.Expressions (5)
System\Linq\Expressions\Interpreter\InstructionList.cs (1)
907
Emit(
NullableMethodCallInstruction
.Create(method.Name, parameters.Length, method));
System\Linq\Expressions\Interpreter\LightCompiler.cs (3)
1080
_instructions.Emit(
NullableMethodCallInstruction
.CreateGetValue());
1135
_instructions.Emit(
NullableMethodCallInstruction
.CreateGetValue());
1170
_instructions.Emit(
NullableMethodCallInstruction
.CreateGetValue());
System\Linq\Expressions\Interpreter\TypeOperations.cs (1)
115
private static
NullableMethodCallInstruction
? s_hasValue, s_value, s_equals, s_getHashCode, s_getValueOrDefault1, s_toString;