C# bitwise rotate left and rotate right - Stack Overflow most recent 30 from stackoverflow.com 2010-03-22T02:07:05Z http://stackoverflow.com/feeds/question/812022 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/812022/c-bitwise-rotate-left-and-rotate-right 8 C# bitwise rotate left and rotate right Prithis http://stackoverflow.com/users/99442 2009-05-01T16:06:10Z 2009-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#812035 7 Answer by Noldorin for C# bitwise rotate left and rotate right Noldorin http://stackoverflow.com/users/44389 2009-05-01T16:08:49Z 2009-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 &lt;&lt; count) | (value &gt;&gt; (32 - count)) } public static uint RotateLeft(this uint value, int count) { return (value &gt;&gt; count) | (value &lt;&lt; (32 - count)) } </code></pre> <p><strong>Note:</strong> As Mehrdad points out, right-shift (<code>&gt;&gt;</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#812039 7 Answer by Joseph for C# bitwise rotate left and rotate right Joseph http://stackoverflow.com/users/69979 2009-05-01T16:10:40Z 2009-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 &lt;&lt; bits) | (original &gt;&gt; (32 -bits)) </code></pre> <p>or</p> <p>(for right)</p> <pre><code>(original &gt;&gt; bits) | (original &lt;&lt; (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#812066 1 Answer by Mehrdad Afshari for C# bitwise rotate left and rotate right Mehrdad Afshari http://stackoverflow.com/users/33708 2009-05-01T16:18:38Z 2009-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 &gt;&gt; 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 &lt;&lt; count) | (val &gt;&gt; (32 - count))); } public static int RotateRight(this int value, int count) { uint val = (uint)value; return (int)((value &gt;&gt; count) | (value &lt;&lt; (32 - count))); } </code></pre>