C# - Numbers
Types for storing numbers.C#
Other pieces of example codes:ulong x=7001234;
uint x=70000;
short x= -1234;
sbyte x= -5;
int x= -12345;
(float)50
You can find it in the following collections: data types
Numbers in another programming language: