C# - Unsigned integers
Types for storing unsigned integers.C#
Other pieces of example codes:byte x=5;
ushort x=280;
uint x=70000;
ulong x=7001234;
You can find it in the following collections: integers | numbers | data types
Unsigned integers in another programming language: