다음을 통해 공유


X86Base.DivRem 메서드

정의

오버로드

DivRem(UInt32, Int32, Int32)

int _div64(__int64 dividend, int divisor, int* 나머지) IDIV reg/m32

DivRem(UInt32, UInt32, UInt32)

unsigned _udiv64(unsigned __int64 dividend, unsigned divisor, unsigned* rest) DIV reg/m32

DivRem(UIntPtr, IntPtr, IntPtr)

IDIV reg/m

DivRem(UIntPtr, UIntPtr, UIntPtr)

IDIV reg/m

DivRem(UInt32, Int32, Int32)

Source:
X86Base.cs
Source:
X86Base.cs

참고

이 미리 보기 API를 사용하려면 프로젝트 파일에서 EnablePreviewFeatures 속성을 True로 설정하여 프로젝트에서 미리 보기 기능을 사용하도록 해야 합니다. 자세한 내용은 https://aka.ms/dotnet-preview-features를 참조하세요.

DivRem is in preview.

int _div64(__int64 dividend, int divisor, int* 나머지) IDIV reg/m32

public:
 static ValueTuple<int, int> DivRem(System::UInt32 lower, int upper, int divisor);
[System.Runtime.Versioning.RequiresPreviewFeatures("DivRem is in preview.")]
public static (int Quotient, int Remainder) DivRem (uint lower, int upper, int divisor);
[<System.Runtime.Versioning.RequiresPreviewFeatures("DivRem is in preview.")>]
static member DivRem : uint32 * int * int -> ValueTuple<int, int>
Public Shared Function DivRem (lower As UInteger, upper As Integer, divisor As Integer) As ValueTuple(Of Integer, Integer)

매개 변수

lower
UInt32
upper
Int32
divisor
Int32

반환

특성

적용 대상

DivRem(UInt32, UInt32, UInt32)

Source:
X86Base.cs
Source:
X86Base.cs

참고

이 미리 보기 API를 사용하려면 프로젝트 파일에서 EnablePreviewFeatures 속성을 True로 설정하여 프로젝트에서 미리 보기 기능을 사용하도록 해야 합니다. 자세한 내용은 https://aka.ms/dotnet-preview-features를 참조하세요.

DivRem is in preview.

unsigned _udiv64(unsigned __int64 dividend, unsigned divisor, unsigned* rest) DIV reg/m32

public:
 static ValueTuple<System::UInt32, System::UInt32> DivRem(System::UInt32 lower, System::UInt32 upper, System::UInt32 divisor);
[System.Runtime.Versioning.RequiresPreviewFeatures("DivRem is in preview.")]
public static (uint Quotient, uint Remainder) DivRem (uint lower, uint upper, uint divisor);
[<System.Runtime.Versioning.RequiresPreviewFeatures("DivRem is in preview.")>]
static member DivRem : uint32 * uint32 * uint32 -> ValueTuple<uint32, uint32>
Public Shared Function DivRem (lower As UInteger, upper As UInteger, divisor As UInteger) As ValueTuple(Of UInteger, UInteger)

매개 변수

lower
UInt32
upper
UInt32
divisor
UInt32

반환

특성

적용 대상

DivRem(UIntPtr, IntPtr, IntPtr)

Source:
X86Base.cs
Source:
X86Base.cs

참고

이 미리 보기 API를 사용하려면 프로젝트 파일에서 EnablePreviewFeatures 속성을 True로 설정하여 프로젝트에서 미리 보기 기능을 사용하도록 해야 합니다. 자세한 내용은 https://aka.ms/dotnet-preview-features를 참조하세요.

DivRem is in preview.

IDIV reg/m

public:
 static ValueTuple<IntPtr, IntPtr> DivRem(UIntPtr lower, IntPtr upper, IntPtr divisor);
[System.Runtime.Versioning.RequiresPreviewFeatures("DivRem is in preview.")]
public static (IntPtr Quotient, IntPtr Remainder) DivRem (UIntPtr lower, IntPtr upper, IntPtr divisor);
[<System.Runtime.Versioning.RequiresPreviewFeatures("DivRem is in preview.")>]
static member DivRem : unativeint * nativeint * nativeint -> ValueTuple<nativeint, nativeint>
Public Shared Function DivRem (lower As UIntPtr, upper As IntPtr, divisor As IntPtr) As ValueTuple(Of IntPtr, IntPtr)

매개 변수

lower
UIntPtr

unativeint

upper
IntPtr

nativeint

divisor
IntPtr

nativeint

반환

ValueTuple<IntPtr,IntPtr>

ValueTuple<nativeint,nativeint>

특성

적용 대상

DivRem(UIntPtr, UIntPtr, UIntPtr)

Source:
X86Base.cs
Source:
X86Base.cs

참고

이 미리 보기 API를 사용하려면 프로젝트 파일에서 EnablePreviewFeatures 속성을 True로 설정하여 프로젝트에서 미리 보기 기능을 사용하도록 해야 합니다. 자세한 내용은 https://aka.ms/dotnet-preview-features를 참조하세요.

DivRem is in preview.

IDIV reg/m

public:
 static ValueTuple<UIntPtr, UIntPtr> DivRem(UIntPtr lower, UIntPtr upper, UIntPtr divisor);
[System.Runtime.Versioning.RequiresPreviewFeatures("DivRem is in preview.")]
public static (UIntPtr Quotient, UIntPtr Remainder) DivRem (UIntPtr lower, UIntPtr upper, UIntPtr divisor);
[<System.Runtime.Versioning.RequiresPreviewFeatures("DivRem is in preview.")>]
static member DivRem : unativeint * unativeint * unativeint -> ValueTuple<unativeint, unativeint>
Public Shared Function DivRem (lower As UIntPtr, upper As UIntPtr, divisor As UIntPtr) As ValueTuple(Of UIntPtr, UIntPtr)

매개 변수

lower
UIntPtr

unativeint

upper
UIntPtr

unativeint

divisor
UIntPtr

unativeint

반환

ValueTuple<UIntPtr,UIntPtr>

ValueTuple<unativeint,unativeint>

특성

적용 대상