Hey Stack-O, I'm super confuzored!
Today is November 3rd
DateTime DateTime = new DateTime(2010,11,3);
long shazbot = 1000000000 * DateTime.Day;
shazbot comes out to -1294967296
Huh???
|
Hey Stack-O, I'm super confuzored! Today is November 3rd
shazbot comes out to -1294967296 Huh??? |
||||
|
If you want a
Edit: C# gives you a warning if you use |
|||||||||||||||||
|
|
Cast to long like this:
|
|||||||||
|
longsare 64-bit wide. – Frédéric Hamidi Nov 3 '10 at 14:15System.Int32*System.Int64gives you aSystem.Int64back. – Powerlord Nov 3 '10 at 14:25