public class Test
{
public int a = 2;
public static int b = 5;
public struct C
{
public int d = 9;
public static int e = 7;
}
}
new Test().Dump();
上面的代码会将新创建的对象和列表a
作为属性转储,但不会列出b
或嵌套静态结构C
或其中的任何内容。
如果我有很多自动生成的静态属性,我该如何转储所有内容?