21 references to Not
Microsoft.CodeAnalysis.CSharp (1)
Binder\Semantics\Operators\OperatorKindExtensions.cs (1)
394case UnaryOperatorKind.LogicalNegation: return ExpressionType.Not;
Microsoft.CSharp (2)
Microsoft\CSharp\RuntimeBinder\BinderHelper.cs (1)
410ExpressionType.Not => SpecialNames.CLR_LogicalNot,
Microsoft\CSharp\RuntimeBinder\RuntimeBinder.cs (1)
1078case ExpressionType.Not:
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\CompilerServices\IDOBinder.vb (1)
1164Return ExpressionType.Not
System.Linq.Expressions (17)
System\Dynamic\UnaryOperationBinder.cs (1)
92case ExpressionType.Not:
System\Linq\Expressions\Compiler\LambdaCompiler.Generated.cs (1)
76case ExpressionType.Not:
System\Linq\Expressions\Compiler\LambdaCompiler.Logical.cs (1)
462case ExpressionType.Not:
System\Linq\Expressions\Compiler\LambdaCompiler.Unary.cs (1)
183case ExpressionType.Not:
System\Linq\Expressions\Compiler\StackSpiller.Generated.cs (1)
74case ExpressionType.Not:
System\Linq\Expressions\DebugViewWriter.cs (2)
717case ExpressionType.Not: 889case ExpressionType.Not:
System\Linq\Expressions\ExpressionStringBuilder.cs (1)
606case ExpressionType.Not: Out("Not("); break;
System\Linq\Expressions\Interpreter\LightCompiler.cs (2)
1237case ExpressionType.Not: 3061case ExpressionType.Not:
System\Linq\Expressions\UnaryExpression.cs (7)
323ExpressionType.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> 582return new UnaryExpression(ExpressionType.Not, expression, expression.Type, null); 584UnaryExpression? u = GetUserDefinedUnaryOperator(ExpressionType.Not, "op_LogicalNot", expression); 589return GetUserDefinedUnaryOperatorOrThrow(ExpressionType.Not, "op_OnesComplement", expression); 591return GetMethodBasedUnaryOperator(ExpressionType.Not, expression, method);