Hex Editor - Binary File Editing Software for Windows
Download Hex Editor Neo Hide this button

BitwiseOperation Enumeration

The type of the bitwise operation to perform. See the IDocumentView.bitwiseOpAsync for more information.

SymbolValueDescription
Not0Perform a bitwise NOT operation: x = ~x.
Or1Perform a bitwise OR operation: x = x | v.
And2Perform a bitwise AND operation: x = x & v.
Xor3Perform a bitwise XOR operation: x = x ^ v.