Click or drag to resize

EuclidRemainder(Int32, Int32) Method

Remainder (% operator). The result has the sign of the dividend.

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static int Remainder(
	int dividend,
	int divisor
)

Parameters

dividend  Int32
The value to divide.
divisor  Int32
The divisor.

Return Value

Int32
The remainder of dividend divided by divisor.
See Also