我在搞乱匿名类型,我不小心将它输出到控制台上。它看起来基本上是我如何定义的。
这是一个重现它的简短程序:
using System;
class Program
{
public static void Main(string[] args)
{
int Integer = 2;
DateTime DateTime = DateTime.Now;
Console.WriteLine(new { Test = 0, Integer, s = DateTime });
Console.ReadKey(true);
}
}
现在,输出是:
{ Test = 0, Integer = 2, s = 28/05/2013 15:07:19 }
我尝试使用 dotPeek 进入程序集以找出原因,但这无济于事。[1]这是 dotPeek 的代码:
// Type: Program
// Assembly: MyProjectName, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
// Assembly location: Not telling you! :P
using System;
internal class Program
{
public static void Main(string[] args)
{
Console.WriteLine((object) new
{
Test = 0,
Integer = 2,
s = DateTime.Now
});
Console.ReadKey(true);
}
}
所以没有太大的不同。
那么它是怎样工作的?它是如何输出的呢?
笔记:
[1]:我忘记打开“显示编译器生成的代码”,这就是我不知道它是如何工作的原因。