UInt32.RotateLeft(UInt32, Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
按给定量旋转剩余的值。
public:
static System::UInt32 RotateLeft(System::UInt32 value, int rotateAmount) = System::Numerics::IBinaryInteger<System::UInt32>::RotateLeft;
public static uint RotateLeft (uint value, int rotateAmount);
static member RotateLeft : uint32 * int -> uint32
Public Shared Function RotateLeft (value As UInteger, rotateAmount As Integer) As UInteger
参数
- value
- UInt32
由 rotateAmount
向左旋转的值。
- rotateAmount
- Int32
向左旋转的量 value
。
返回
左rotateAmount
旋转value
的结果。