BitOperations.RotateRight 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
RotateRight(UInt32, Int32) |
지정된 값을 지정된 비트 수만큼 오른쪽으로 회전합니다. |
RotateRight(UInt64, Int32) |
지정된 값을 지정된 비트 수만큼 오른쪽으로 회전합니다. |
RotateRight(UIntPtr, Int32) |
지정된 값을 지정된 비트 수만큼 오른쪽으로 회전합니다. x86 명령 ROR과 비슷한 동작입니다. |
RotateRight(UInt32, Int32)
- Source:
- BitOperations.cs
- Source:
- BitOperations.cs
- Source:
- BitOperations.cs
중요
이 API는 CLS 규격이 아닙니다.
지정된 값을 지정된 비트 수만큼 오른쪽으로 회전합니다.
public:
static System::UInt32 RotateRight(System::UInt32 value, int offset);
[System.CLSCompliant(false)]
public static uint RotateRight (uint value, int offset);
[<System.CLSCompliant(false)>]
static member RotateRight : uint32 * int -> uint32
Public Shared Function RotateRight (value As UInteger, offset As Integer) As UInteger
매개 변수
- value
- UInt32
회전할 값입니다.
- offset
- Int32
회전할 비트 수입니다. [0..31] 범위 밖의 모든 값은 합동 mod 32로 처리됩니다.
반환
순환된 값입니다.
- 특성
설명
이 메서드는 x86 명령 ROR과 동작에서 비슷합니다.
적용 대상
RotateRight(UInt64, Int32)
- Source:
- BitOperations.cs
- Source:
- BitOperations.cs
- Source:
- BitOperations.cs
중요
이 API는 CLS 규격이 아닙니다.
지정된 값을 지정된 비트 수만큼 오른쪽으로 회전합니다.
public:
static System::UInt64 RotateRight(System::UInt64 value, int offset);
[System.CLSCompliant(false)]
public static ulong RotateRight (ulong value, int offset);
[<System.CLSCompliant(false)>]
static member RotateRight : uint64 * int -> uint64
Public Shared Function RotateRight (value As ULong, offset As Integer) As ULong
매개 변수
- value
- UInt64
회전할 값입니다.
- offset
- Int32
회전할 비트 수입니다. [0..63] 범위 밖의 모든 값은 합동 mod 64로 처리됩니다.
반환
순환된 값입니다.
- 특성
설명
이 메서드는 x86 명령 ROR과 동작에서 비슷합니다.
적용 대상
RotateRight(UIntPtr, Int32)
- Source:
- BitOperations.cs
- Source:
- BitOperations.cs
- Source:
- BitOperations.cs
중요
이 API는 CLS 규격이 아닙니다.
지정된 값을 지정된 비트 수만큼 오른쪽으로 회전합니다. x86 명령 ROR과 비슷한 동작입니다.
public:
static UIntPtr RotateRight(UIntPtr value, int offset);
[System.CLSCompliant(false)]
public static UIntPtr RotateRight (UIntPtr value, int offset);
[<System.CLSCompliant(false)>]
static member RotateRight : unativeint * int -> unativeint
Public Shared Function RotateRight (value As UIntPtr, offset As Integer) As UIntPtr
매개 변수
- value
-
UIntPtr
unativeint
회전할 값입니다.
- offset
- Int32
회전할 비트 수입니다. [0..31] 범위를 벗어난 모든 값은 32비트 프로세스에서 동시 모드 32로 처리되고 범위 [0..63]을 벗어난 값은 64비트 프로세스에서 동시 모드 64로 처리됩니다.
반환
unativeint
순환된 값입니다.
- 특성
적용 대상
.NET