system.int64 and system.int32 Difference
system.int64 and system.int32
Basic :
Basic :
int
is an alias forInt32
long
is an alias forInt64
More :
On both 32-bit and 64-bit machines:
long
is 64-bit, it's a synonym forSystem.Int64
.int
is 32-bit, it's a synonym forSystem.Int32
.
Comments
Post a Comment