1 implementation of OperatorMethod
Microsoft.CodeAnalysis (1)
Operations\OperationNodes.cs (1)
81public IMethodSymbol? OperatorMethod => Conversion.MethodSymbol;
7 references to OperatorMethod
Microsoft.CodeAnalysis (2)
Generated\Operations.Generated.cs (2)
669/// Type parameter which runtime type will be used to resolve virtual invocation of the <see cref="OperatorMethod" />, if any. 670/// Null if <see cref="OperatorMethod" /> is resolved statically, or is null.
Microsoft.CodeAnalysis.CodeStyle (1)
AbstractRemoveUnusedParametersAndValuesDiagnosticAnalyzer.SymbolStartAnalyzer.BlockAnalyzer.cs (1)
649return conversion.OperatorMethod == null &&
Microsoft.CodeAnalysis.Features (1)
AbstractRemoveUnusedParametersAndValuesDiagnosticAnalyzer.SymbolStartAnalyzer.BlockAnalyzer.cs (1)
649return conversion.OperatorMethod == null &&
Microsoft.CodeAnalysis.Test.Utilities (3)
Compilation\OperationTreeVerifier.cs (1)
1245LogHasOperatorMethodExpressionCommon(operation.OperatorMethod, operation.ConstrainedToType);
Compilation\TestOperationVisitor.cs (1)
823var operatorMethod = operation.OperatorMethod;
Diagnostics\BoxingOperationAnalyzer.cs (1)
51conversion.OperatorMethod == null)