![]() |
| | #1 |
| Registered User Join Date: Nov 2009
Posts: 10
| _rotl |
| deathkosui is offline | |
| | #2 |
| Registered User Join Date: Jun 2008 Location: RING 0
Posts: 462
| 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))
}
|
| valaris is offline | |
![]() |
| Thread Tools | |
| Display Modes | |
|