Currently, when Reflector class used to test non-public members, it's
impossible to test members that defined in base classes.
For example we have to classes A & B. B is derived from A. A class defines
integer count.
public class A
{
private int count = 5;
...
}
public class B : A
{
...
}
Code below will generate an ReflectionException.
B b = new B();
Reflector.GetField(_b, "count");
Original issue reported on code.google.com by astopf...@gmail.com on 31 Aug 2007 at 1:34
Original issue reported on code.google.com by
astopf...@gmail.com
on 31 Aug 2007 at 1:34