Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
How do you return 'not uint' in C#?

Hi Everyone, I'm trying to convert the following from VB.NET to C# and I'm getting a syntax error.

VB.NET:

Dim CurrentCRC As UInt16
CurrentCRC = &HFFFF
CurrentCRC = Not CurrentCRC

C#:

UInt16 currentCRC = default(UInt16);
currentCRC = 0xFFFF;
currentCRC = !currentCRC;

The last line is giving me the syntax error of

Operator '!' cannot be applied to operand of type 'ushort'

Any help would be appreciated!

share|improve this question
@charles - Yep, you're right, sorry about that. Didn't find it when I searched :( – Fritos Jun 2 '11 at 20:44

marked as duplicate by Oded, Rick Sladkey, Grant Thomas, Fritos, Tim Post Jun 2 '11 at 22:22

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 7 down vote accepted

If you're looking for the bitwise NOT operator (i.e. the one that flips every bit in the value), use ~. ! is the logical NOT operator (for boolean logic).

share|improve this answer

! is the boolean NOT operator, i.e., it may only be applied to booleans. If you want a bitwise NOT use ~.

share|improve this answer

If you want a bitwise complement, use the ~ operator.

In c#, ! is only valid for negating booleans.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.