What is the actual difference between a long and an int in C#? I understand that in C/C++ long would be 64bit on some 64bit platforms(depending on OS o
long
int
I think an int is a 32-bit integer, while a long is a 64-bit integer.