Integer.RemainderUnsigned(Int32, Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the unsigned remainder from dividing the first argument by the second where each argument and the result is interpreted as an unsigned value.
[Android.Runtime.Register("remainderUnsigned", "(II)I", "", ApiSince=26)]
public static int RemainderUnsigned (int dividend, int divisor);
[<Android.Runtime.Register("remainderUnsigned", "(II)I", "", ApiSince=26)>]
static member RemainderUnsigned : int * int -> int
Parameters
- dividend
- Int32
the value to be divided
- divisor
- Int32
the value doing the dividing
Returns
the unsigned remainder of the first argument divided by the second argument
- Attributes
Remarks
Returns the unsigned remainder from dividing the first argument by the second where each argument and the result is interpreted as an unsigned value.
Added in 1.8.
Java documentation for java.lang.Integer.remainderUnsigned(int, int)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.