1 implementation of OperatorMethod
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
6325
public IMethodSymbol?
OperatorMethod
{ get; }
10 references to OperatorMethod
Microsoft.CodeAnalysis (3)
Generated\Operations.Generated.cs (2)
1530
/// Type parameter which runtime type will be used to resolve virtual invocation of the <see cref="
OperatorMethod
" />, if any.
1531
/// Null if <see cref="
OperatorMethod
" /> is resolved statically, or is null.
Operations\ControlFlowGraphBuilder.cs (1)
2115
operation.IsChecked, operation.
OperatorMethod
, operation.ConstrainedToType, PopOperand(), value, semanticModel: null,
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (4)
Semantics\DynamicTests.cs (4)
7192
Assert.Null(operation.
OperatorMethod
);
7305
Assert.Null(operation.
OperatorMethod
);
7421
Assert.Null(operation.
OperatorMethod
);
7536
Assert.Null(operation.
OperatorMethod
);
Microsoft.CodeAnalysis.Test.Utilities (2)
Compilation\OperationTreeVerifier.cs (1)
1687
LogHasOperatorMethodExpressionCommon(operation.
OperatorMethod
, operation.ConstrainedToType);
Compilation\TestOperationVisitor.cs (1)
1172
var operatorMethod = operation.
OperatorMethod
;
Roslyn.Diagnostics.Analyzers (1)
AbstractDoNotCopyValue.cs (1)
494
CheckMethodSymbolInUnsupportedContext(operation, operation.
OperatorMethod
);