📅  最后修改于: 2022-03-11 14:49:09.455000             🧑  作者: Mango
public static uint RotateLeft(this uint value, int count)
{
return (value << count) | (value >> (32 - count))
}
public static uint RotateRight(this uint value, int count)
{
return (value >> count) | (value << (32 - count))
}