We are looking for a way to add an NOT Operator to our solutions. Unfortunately, C# doesnt support new operators, so we couldnt just add NOT as a new Operator.
Next thing we thought of was implementing a static method NOT(). But at this moment, C# doesnt support using Namespace.StaticTypeName; (atleast we havent figured it out yet) - Thats why we would have to write down the silly classname all the time.
Then we had finally the idea to replace the NOT with the !-Operator, every time we build the solution... like the good old #define in c++.
Is it possible in C#?