Hi
I am looking for C# equivalent (.Net 2) of _rotl and _rotr from c++.
Any ideas ?
Thanks,
|
2
|
Hi I am looking for C# equivalent (.Net 2) of _rotl and _rotr from c++. Any ideas ? Thanks,
|
||
|
|
|
|
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. |
||||||||||
|
|
|
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:
|
||||||||||
|
|
|
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 |
||||||||||||||
|