System.Int32比使用int慢吗?

可能重复:
C#,int或Int32? 我应该在乎吗?

System.Int32上的几个问题:

  • sizeof(System.Int32)不允许有任何特定的技术原因吗?
  • System.Int32与int类型相比有多快或多慢?
  • 对System.Int32类型的变量调用System.Runtime.InteropServices.Marshal.SizeOf的结果为4; 这个怎么用? 这个类的大小是否与int的大小完全相同?

  • 有效地没有区别。

    int == Int32

    前者隐含32位,而Int32拼出来,类似Int64和Int16(长和短)相同。

    链接地址: http://www.djcxy.com/p/21041.html

    上一篇: Is System.Int32 any slower than using int?

    下一篇: Use "int" or "Int32" while type casting?