21 references to UnaryPlus
Microsoft.CodeAnalysis.CSharp (1)
Binder\Semantics\Operators\OperatorKindExtensions.cs (1)
392
case UnaryOperatorKind.UnaryPlus: return ExpressionType.
UnaryPlus
;
Microsoft.CSharp (2)
Microsoft\CSharp\RuntimeBinder\BinderHelper.cs (1)
409
ExpressionType.
UnaryPlus
=> SpecialNames.CLR_UnaryPlus,
Microsoft\CSharp\RuntimeBinder\RuntimeBinder.cs (1)
1076
case ExpressionType.
UnaryPlus
:
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\CompilerServices\IDOBinder.vb (1)
1166
Return ExpressionType.
UnaryPlus
System.Linq.Expressions (17)
System\Dynamic\UnaryOperationBinder.cs (1)
91
case ExpressionType.
UnaryPlus
:
System\Linq\Expressions\Compiler\LambdaCompiler.Generated.cs (1)
79
case ExpressionType.
UnaryPlus
:
System\Linq\Expressions\Compiler\LambdaCompiler.Unary.cs (2)
134
case ExpressionType.
UnaryPlus
:
210
case ExpressionType.
UnaryPlus
:
System\Linq\Expressions\Compiler\StackSpiller.Generated.cs (1)
77
case ExpressionType.
UnaryPlus
:
System\Linq\Expressions\DebugViewWriter.cs (2)
716
case ExpressionType.
UnaryPlus
:
901
case ExpressionType.
UnaryPlus
:
System\Linq\Expressions\ExpressionStringBuilder.cs (2)
615
case ExpressionType.
UnaryPlus
: Out('+'); break;
635
case ExpressionType.
UnaryPlus
:
System\Linq\Expressions\Interpreter\LightCompiler.cs (2)
1264
case ExpressionType.
UnaryPlus
:
3064
case ExpressionType.
UnaryPlus
: CompileUnaryExpression(expr); break;
System\Linq\Expressions\UnaryExpression.cs (6)
333
ExpressionType.
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>
513
return new UnaryExpression(ExpressionType.
UnaryPlus
, expression, expression.Type, null);
515
return GetUserDefinedUnaryOperatorOrThrow(ExpressionType.
UnaryPlus
, "op_UnaryPlus", expression);
517
return GetMethodBasedUnaryOperator(ExpressionType.
UnaryPlus
, expression, method);