C# - Integers
Types for storing integers.C#
Other pieces of example codes:byte x=5;
ushort x=280;
sbyte x= -5;
int x= -12345;
short x= -1234;
long x= -82345;
You can find it in the following collections: numbers | data types
Integers in another programming language: