View Single Post
Old 02-10-2007, 07:59 PM   #5 (permalink)
mordero
Forum Expert
 
mordero's Avatar
 
Join Date: Nov 2003
Location: Illinois, USA
Age: 22
Posts: 2,911
Default

My understand was that int was just a language keywrod and when a compiler in a 32-bit OS sees int, it actually uses System.Int32, and a 64-bit OS actually uses System.Int64.

Oh and for that
Code:
int a, b, c;
vs
Code:
int a;
int b;
int c;
Those are the same, the only time this might make a difference is when you are compiling, but the same IL code should be generate.

And it looks like the first two replies to that post are correct in what they say...
mordero is offline   Reply With Quote