Unfortunately, search engines have failed me using this query.
For instance:
int foo = ~bar;
|
|
I'm assuming based on your most active tags you're referring to C#, but it's the same From MSDN:
Example program:
Output:
|
|||
|
|
|
In C and C++, it's a bitwise NOT. |
|||
|
|
|
It's called Tilde (for your future searches), and is usually user for bitwise NOT (i.e. the complement of each bit) |
|||
|
|
|
It's called a tilde and it looks like some languages use it as a bitwise NOT: http://en.wikipedia.org/wiki/Tilde#Computer%5Flanguages |
|||
|
|
|
bitwise negation, yields the bitwise complement of the operand.
|
|||
|
|
|
In C, it's the bitwise complement operator. Basically, it looks at the binary representation of a number and converts the ones into zeros and the zeros into ones. |
|||
|
|
|
In most C-like languages, it is a bitwise not. This will take the raw binary implementation of a number, and change all 1's to 0's and 0's to 1's. For example:
|
|||
|
|