CIL 有一些指令,例如ldc.r8 <float64 (num)>, ldc.r4 <float32 (num)>, ldc.i8 <int64 (num)>, ldc.i4.s <int8 (num)>
将常量加载到堆栈中。
那么,int32, int64, float32, float64
C# 中这些数据类型 ( ) 的等价物是什么?
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
另请参阅数据类型摘要。