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();
The code above will dump the newly created object and list a
as a property but won't list b
or the nested static struct C
or anything inside of it.
If I have alot of auto generated static properties how do I dump everything?