int C# with Example



int C# with Example

int is an alias for System.Int32, which is a data type for signed 32-bit integers. This data type can be found in 
mscorlib.dll which is implicitly referenced by every C# project when you create them. 
Range: -2,147,483,648 to 2,147,483,647 
int int1 = -10007; 
 

var int2 = 2132012521; 

0 Comment's

Comment Form