23 references to Add
Microsoft.CodeAnalysis.CSharp (1)
Binder\Semantics\Operators\OperatorKindExtensions.cs (1)
359
case BinaryOperatorKind.Addition: return ExpressionType.
Add
;
Microsoft.CSharp (2)
Microsoft\CSharp\RuntimeBinder\BinderHelper.cs (1)
378
ExpressionType.
Add
=> SpecialNames.CLR_Add,
Microsoft\CSharp\RuntimeBinder\RuntimeBinder.cs (1)
1018
case ExpressionType.
Add
:
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\CompilerServices\IDOBinder.vb (1)
1168
Return ExpressionType.
Add
System.Linq.Expressions (19)
System\Dynamic\BinaryOperationBinder.cs (1)
83
case ExpressionType.
Add
:
System\Linq\Expressions\BinaryExpression.cs (7)
140
ExpressionType.AddAssign => ExpressionType.
Add
,
903
ExpressionType.
Add
=> Add(left, right, method),
1457
/// <returns>A <see cref="BinaryExpression"/> that has the <see cref="NodeType"/> property equal to <see cref="ExpressionType.
Add
"/>
1470
/// <returns>A <see cref="BinaryExpression"/> that has the <see cref="NodeType"/> property equal to <see cref="ExpressionType.
Add
"/>
1481
return new SimpleBinaryExpression(ExpressionType.
Add
, left, right, left.Type);
1483
return GetUserDefinedBinaryOperatorOrThrow(ExpressionType.
Add
, "op_Addition", left, right, liftToNull: true);
1485
return GetMethodBasedBinaryOperator(ExpressionType.
Add
, left, right, method, liftToNull: true);
System\Linq\Expressions\Compiler\LambdaCompiler.Binary.cs (2)
168
case ExpressionType.
Add
:
313
case ExpressionType.
Add
:
System\Linq\Expressions\Compiler\LambdaCompiler.Generated.cs (1)
34
case ExpressionType.
Add
:
System\Linq\Expressions\Compiler\StackSpiller.Generated.cs (1)
34
case ExpressionType.
Add
:
System\Linq\Expressions\DebugViewWriter.cs (3)
319
case ExpressionType.
Add
: op = "+"; break;
601
case ExpressionType.
Add
:
700
case ExpressionType.
Add
:
System\Linq\Expressions\ExpressionStringBuilder.cs (1)
187
case ExpressionType.
Add
:
System\Linq\Expressions\Interpreter\LightCompiler.cs (3)
904
case ExpressionType.
Add
:
1022
case ExpressionType.
Add
: _instructions.EmitAdd(left.Type, @checked: false); break;
3030
case ExpressionType.
Add
: