Is System.Int32 any slower than using int?
Possible Duplicate:
C#, int or Int32? Should I care?
Couple of questions on System.Int32:
Effectivly there is no difference.
int == Int32
.
The former is implicitly 32 bits, while Int32 spells it out, similarly Int64 and Int16 (long and short respectivly) do the same.
链接地址: http://www.djcxy.com/p/21042.html