21 references to Not
Microsoft.CodeAnalysis.CSharp (1)
Binder\Semantics\Operators\OperatorKindExtensions.cs (1)
394
case UnaryOperatorKind.LogicalNegation: return ExpressionType.
Not
;
Microsoft.CSharp (2)
Microsoft\CSharp\RuntimeBinder\BinderHelper.cs (1)
410
ExpressionType.
Not
=> SpecialNames.CLR_LogicalNot,
Microsoft\CSharp\RuntimeBinder\RuntimeBinder.cs (1)
1078
case ExpressionType.
Not
:
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\CompilerServices\IDOBinder.vb (1)
1164
Return ExpressionType.
Not
System.Linq.Expressions (17)
System\Dynamic\UnaryOperationBinder.cs (1)
92
case ExpressionType.
Not
:
System\Linq\Expressions\Compiler\LambdaCompiler.Generated.cs (1)
76
case ExpressionType.
Not
:
System\Linq\Expressions\Compiler\LambdaCompiler.Logical.cs (1)
462
case ExpressionType.
Not
:
System\Linq\Expressions\Compiler\LambdaCompiler.Unary.cs (1)
183
case ExpressionType.
Not
:
System\Linq\Expressions\Compiler\StackSpiller.Generated.cs (1)
74
case ExpressionType.
Not
:
System\Linq\Expressions\DebugViewWriter.cs (2)
717
case ExpressionType.
Not
:
889
case ExpressionType.
Not
:
System\Linq\Expressions\ExpressionStringBuilder.cs (1)
606
case ExpressionType.
Not
: Out("Not("); break;
System\Linq\Expressions\Interpreter\LightCompiler.cs (2)
1237
case ExpressionType.
Not
:
3061
case ExpressionType.
Not
:
System\Linq\Expressions\UnaryExpression.cs (7)
323
ExpressionType.
Not
=> Not(operand, method),
555
/// <returns>A <see cref="UnaryExpression"/> that has the <see cref="NodeType"/> property equal to <see cref="ExpressionType.
Not
"/> and the <see cref="UnaryExpression.Operand"/> property set to the specified value.</returns>
566
/// <returns>A <see cref="UnaryExpression"/> that has the <see cref="NodeType"/> property equal to <see cref="ExpressionType.
Not
"/> and the <see cref="UnaryExpression.Operand"/> and <see cref="UnaryExpression.Method"/> properties set to the specified values.</returns>
582
return new UnaryExpression(ExpressionType.
Not
, expression, expression.Type, null);
584
UnaryExpression? u = GetUserDefinedUnaryOperator(ExpressionType.
Not
, "op_LogicalNot", expression);
589
return GetUserDefinedUnaryOperatorOrThrow(ExpressionType.
Not
, "op_OnesComplement", expression);
591
return GetMethodBasedUnaryOperator(ExpressionType.
Not
, expression, method);