What is the C# equivalent (.NET 2.0) of _rotl and _rotr from C++?
|
Is this what you are trying to do? Jon Skeet answered this in another site Basically what you want is (for left)
or (for right)
Also, as Mehrdad has already suggested, this only works for uint, which is the example that Jon gives as well. |
|||||||||||
|
|
There's no built-in language feature for bit rotation in C#, but these extension methods should do the job:
Note: As Mehrdad points out, right-shift ( Example usage:
(Note that |
|||||||||||||||||
|
|
The naive version of shifting won't work. The reason is, right shifting signed numbers will fill the left bits with sign bit, not 0: You can verify this fact with:
The correct way is:
|
|||||||||||
|
|
Note that if you want to create overloads that operate on shorter integral values, you need to add an extra step, as shown in:
The masking operation is not needed for the 32-bit and 64-bit overloads, as the shift operators themselves take care of it for those sizes of left-hand operands. |
|||
|
|
