system.int64 and system.int32 Difference
system.int64 and system.int32
Basic :
Basic :
- intis an alias for- Int32
- longis an alias for- Int64
More :On both 32-bit and 64-bit machines:- longis 64-bit, it's a synonym for- System.Int64.
- intis 32-bit, it's a synonym for- System.Int32.
Comments
Post a Comment