3

在我的某些属性项目中,表单 (x=>x.property) 的表达式在运行时显示为 (x=>Convert(x.property)),如下所示:

在此处输入图像描述

这取决于属性类型,double 和 DateTime 似乎是罪魁祸首。适用于字符串属性(例如 Speed 和 ForeColour 都是字符串)

为什么会这样出来?

4

1 回答 1

10

double并且DateTime是值类型。编译器Expression.Convert基本上用来表示装箱操作。

string已经是引用类型,所以不需要转换。

您可以在普通代码中看到相同的内容:

double d = 0.5;
string s = "hello";

object o1 = d;
object o2 = s;

...编译为:

// d = 0.5
IL_0001:  ldc.r8     0.5
IL_000a:  stloc.0

// s = "hello"
IL_000b:  ldstr      "hello"
IL_0010:  stloc.1

// o1 = d - boxing!
IL_0011:  ldloc.0
IL_0012:  box        [mscorlib]System.Double
IL_0017:  stloc.2

// o2 = s - no boxing required!
IL_0018:  ldloc.1
IL_0019:  stloc.3
于 2013-02-25T22:33:49.417 回答