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