 | CMATHiMod Method |
Calculates the modulus of two integers
Namespace:
GeoEngine.Core.GXNet
Assembly:
geoengine.core.gxnet (in geoengine.core.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static int iMod(
int a,
int b
)
public static int iMod(
int a,
int b
)
Public Shared Function iMod (
a As Integer,
b As Integer
) As Integer
Public Shared Function iMod (
a As Integer,
b As Integer
) As Integer
public:
static int iMod(
int a,
int b
)
public:
static int iMod(
int a,
int b
)
static member iMod :
a : int *
b : int -> int
static member iMod :
a : int *
b : int -> int
Parameters
- a
- Type: SystemInt32
A - b
- Type: SystemInt32
B (must not be zero)
Return Value
Type:
Int32Int
RemarksIf A or B is a dummy, returns dummy.
See Also