C# bitwise rotate left and rotate right - Stack Overflow most recent 30 from stackoverflow.com2010-03-22T02:07:05Zhttp://stackoverflow.com/feeds/question/812022http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/812022/c-bitwise-rotate-left-and-rotate-right8C# bitwise rotate left and rotate rightPrithishttp://stackoverflow.com/users/994422009-05-01T16:06:10Z2009-05-02T07:59:05Z
<p>Hi </p>
<p>I am looking for C# equivalent (.Net 2) of _rotl and _rotr from c++. </p>
<p>Any ideas ?</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/812022/c-bitwise-rotate-left-and-rotate-right/812035#8120357Answer by Noldorin for C# bitwise rotate left and rotate rightNoldorinhttp://stackoverflow.com/users/443892009-05-01T16:08:49Z2009-05-02T07:59:05Z<p>There's no built-in language feature for bit rotation in C#, but these extension methods should do the job:</p>
<pre><code>public static uint RotateLeft(this uint value, int count)
{
return (value << count) | (value >> (32 - count))
}
public static uint RotateLeft(this uint value, int count)
{
return (value >> count) | (value << (32 - count))
}
</code></pre>
<p><strong>Note:</strong> As Mehrdad points out, right-shift (<code>>></code>) for signed integers is a peculiarity: it fills the MSBs with sign bit rather than 0 as it does for unsigned numbers. I've now changed the methods to take and return <code>uint</code> (unsigned 32-bit integer) instead - this is also in greater accordance with the C++ <code>rotl</code> and <code>rotr</code> functions. If you want to rotate integers, just case them before passing, and again cast the return value, of course.</p>
<p>Example usage:</p>
<pre><code>int foo1 = 8.RotateRight(3); // foo1 = 1
int foo2 = int.MinValue.RotateLeft(3); // foo2 = 4
</code></pre>
<p>(Note that <code>int.MinValue</code> is 111111111111111111111111 - 32 1s in binary.)</p>
http://stackoverflow.com/questions/812022/c-bitwise-rotate-left-and-rotate-right/812039#8120397Answer by Joseph for C# bitwise rotate left and rotate rightJosephhttp://stackoverflow.com/users/699792009-05-01T16:10:40Z2009-05-01T16:25:59Z<p>Is this what you are trying to do?</p>
<p><a href="http://www.developmentnow.com/g/6%5F2004%5F3%5F0%5F0%5F71603/-rotl.htm" rel="nofollow">Jon Skeet answered this in another site</a></p>
<p>Basically what you want is</p>
<p>(for left)</p>
<pre><code>(original << bits) | (original >> (32 -bits))
</code></pre>
<p>or</p>
<p>(for right)</p>
<pre><code>(original >> bits) | (original << (32 -bits))
</code></pre>
<p>Also, as Mehrdad has already suggested, this only works for uint, which is the example that Jon gives as well.</p>
http://stackoverflow.com/questions/812022/c-bitwise-rotate-left-and-rotate-right/812066#8120661Answer by Mehrdad Afshari for C# bitwise rotate left and rotate rightMehrdad Afsharihttp://stackoverflow.com/users/337082009-05-01T16:18:38Z2009-05-01T16:18:38Z<p>The naive version of shifting won't work. The reason is, right shifting signed numbers will fill the left bits with <strong>sign bit, not 0</strong>:</p>
<p>You can verify this fact with:</p>
<pre><code>Console.WriteLine(-1 >> 1);
</code></pre>
<p>The correct way is:</p>
<pre><code>public static int RotateLeft(this int value, int count)
{
uint val = (uint)value;
return (int)((val << count) | (val >> (32 - count)));
}
public static int RotateRight(this int value, int count)
{
uint val = (uint)value;
return (int)((value >> count) | (value << (32 - count)));
}
</code></pre>