Binder\Semantics\Operators\OperatorKind.cs (30)
572IntNotEqual = Int | NotEqual,
573UIntNotEqual = UInt | NotEqual,
574LongNotEqual = Long | NotEqual,
575ULongNotEqual = ULong | NotEqual,
576NIntNotEqual = NInt | NotEqual,
577NUIntNotEqual = NUInt | NotEqual,
578FloatNotEqual = Float | NotEqual,
579DoubleNotEqual = Double | NotEqual,
580DecimalNotEqual = Decimal | NotEqual,
581BoolNotEqual = Bool | NotEqual,
582EnumNotEqual = Enum | NotEqual,
583NullableNullNotEqual = NullableNull | NotEqual,
584UserDefinedNotEqual = UserDefined | NotEqual,
585LiftedIntNotEqual = Lifted | Int | NotEqual,
586LiftedUIntNotEqual = Lifted | UInt | NotEqual,
587LiftedLongNotEqual = Lifted | Long | NotEqual,
588LiftedULongNotEqual = Lifted | ULong | NotEqual,
589LiftedNIntNotEqual = Lifted | NInt | NotEqual,
590LiftedNUIntNotEqual = Lifted | NUInt | NotEqual,
591LiftedFloatNotEqual = Lifted | Float | NotEqual,
592LiftedDoubleNotEqual = Lifted | Double | NotEqual,
593LiftedDecimalNotEqual = Lifted | Decimal | NotEqual,
594LiftedBoolNotEqual = Lifted | Bool | NotEqual,
595LiftedEnumNotEqual = Lifted | Enum | NotEqual,
596LiftedUserDefinedNotEqual = Lifted | UserDefined | NotEqual,
597ObjectNotEqual = Object | NotEqual,
598StringNotEqual = String | NotEqual,
599DelegateNotEqual = Delegate | NotEqual,
600PointerNotEqual = Pointer | NotEqual,
601DynamicNotEqual = Dynamic | NotEqual,