Unsigned integers
Types for storing unsigned integers.Example
Other pieces of example codes:ushort y = 1025 % 8;
ulong y = 10250 div 8;
uint y = 1025 div 8;
byte y = 15 % 4;
You can find it in the following collections: integers | numbers | data types
Unsigned integers in another programming language: