21 references to UnaryPlus
Microsoft.CodeAnalysis.CSharp (1)
Binder\Semantics\Operators\OperatorKindExtensions.cs (1)
392case UnaryOperatorKind.UnaryPlus: return ExpressionType.UnaryPlus;
Microsoft.CSharp (2)
Microsoft\CSharp\RuntimeBinder\BinderHelper.cs (1)
409ExpressionType.UnaryPlus => SpecialNames.CLR_UnaryPlus,
Microsoft\CSharp\RuntimeBinder\RuntimeBinder.cs (1)
1076case ExpressionType.UnaryPlus:
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\CompilerServices\IDOBinder.vb (1)
1166Return ExpressionType.UnaryPlus
System.Linq.Expressions (17)
System\Dynamic\UnaryOperationBinder.cs (1)
91case ExpressionType.UnaryPlus:
System\Linq\Expressions\Compiler\LambdaCompiler.Generated.cs (1)
79case ExpressionType.UnaryPlus:
System\Linq\Expressions\Compiler\LambdaCompiler.Unary.cs (2)
134case ExpressionType.UnaryPlus: 210case ExpressionType.UnaryPlus:
System\Linq\Expressions\Compiler\StackSpiller.Generated.cs (1)
77case ExpressionType.UnaryPlus:
System\Linq\Expressions\DebugViewWriter.cs (2)
716case ExpressionType.UnaryPlus: 901case ExpressionType.UnaryPlus:
System\Linq\Expressions\ExpressionStringBuilder.cs (2)
615case ExpressionType.UnaryPlus: Out('+'); break; 635case ExpressionType.UnaryPlus:
System\Linq\Expressions\Interpreter\LightCompiler.cs (2)
1264case ExpressionType.UnaryPlus: 3064case ExpressionType.UnaryPlus: CompileUnaryExpression(expr); break;
System\Linq\Expressions\UnaryExpression.cs (6)
333ExpressionType.UnaryPlus => UnaryPlus(operand, method), 489/// <returns>A <see cref="UnaryExpression"/> that has the <see cref="NodeType"/> property equal to <see cref="ExpressionType.UnaryPlus"/> and the <see cref="UnaryExpression.Operand"/> property set to the specified value.</returns> 502/// <returns>A <see cref="UnaryExpression"/> that has the <see cref="NodeType"/> property equal to <see cref="ExpressionType.UnaryPlus"/> and the <see cref="UnaryExpression.Operand"/> and <see cref="UnaryExpression.Method"/>property set to the specified value.</returns> 513return new UnaryExpression(ExpressionType.UnaryPlus, expression, expression.Type, null); 515return GetUserDefinedUnaryOperatorOrThrow(ExpressionType.UnaryPlus, "op_UnaryPlus", expression); 517return GetMethodBasedUnaryOperator(ExpressionType.UnaryPlus, expression, method);