2

CIL 有一些指令,例如ldc.r8 <float64 (num)>, ldc.r4 <float32 (num)>, ldc.i8 <int64 (num)>, ldc.i4.s <int8 (num)>将常量加载到堆栈中。

那么,int32, int64, float32, float64C# 中这些数据类型 ( ) 的等价物是什么?

4

1 回答 1

8
C# type     CIL type    .NET Framework type
============================================
short       int16       System.Int16
int         int32       System.Int32
long        int64       System.Int64

float       float32     System.Single
double      float64     System.Double

另请参阅数据类型摘要

于 2012-10-14T12:47:13.873 回答