GetValue on static field inside nested classes.
- by Sir Gallahad
Hi...
I have the following class declared. I need to retreive the class structure and the static values without instanciate it.
public MyClass()
{
public static string field = "Value";
public nestedClass()
{
public static string nestedField = "NestedValue";
}
}
I've successfuly used GetFields and GetNestedType to…