1 out of 4 rated this helpful - Rate this topic

! Operator (C# Reference)

The logical negation operator (!) is a unary operator that negates its operand. It is defined for bool and returns true if and only if its operand is false.

User-defined types can overload the ! operator (see operator).

class MainClass4
{
    static void Main()
    {
        Console.WriteLine(!true);
        Console.WriteLine(!false);
    }
}
/*
Output:
False
True
*/

Reference

Concepts

Other Resources

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.