10 references to System_Nullable_T_get_Value
Microsoft.CodeAnalysis (1)
Operations\ControlFlowGraphBuilder.cs (1)
3329nullableMember == SpecialMember.System_Nullable_T_get_Value ||
Microsoft.CodeAnalysis.CSharp (8)
Binder\ForEachLoopBinder.cs (1)
728MethodSymbol nullableValueGetter = (MethodSymbol)GetSpecialTypeMember(SpecialMember.System_Nullable_T_get_Value, diagnostics, exprSyntax);
CodeGen\EmitExpression.cs (1)
2223(object)originalMethod == this._module.Compilation.GetSpecialTypeMember(SpecialMember.System_Nullable_T_get_Value) ||
FlowAnalysis\NullableWalker.cs (5)
7239else if (method.OriginalDefinition == compilation.GetSpecialTypeMember(SpecialMember.System_Nullable_T_get_Value)) 11794bool skipReceiverNullCheck = nullableOfTMember != SpecialMember.System_Nullable_T_get_Value; 11836if (getMethod == compilation.GetSpecialTypeMember(SpecialMember.System_Nullable_T_get_Value)) 11838return SpecialMember.System_Nullable_T_get_Value; 11854var getValue = (MethodSymbol)compilation.GetSpecialTypeMember(SpecialMember.System_Nullable_T_get_Value);
Lowering\LocalRewriter\LocalRewriter_Conversion.cs (1)
1094MethodSymbol get_Value = UnsafeGetNullableMethod(syntax, rewrittenOperandType, SpecialMember.System_Nullable_T_get_Value);
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (1)
Symbols\MissingSpecialMember.cs (1)
1345compilation.MakeMemberMissing(SpecialMember.System_Nullable_T_get_Value);