Is there any way to use reflection to get the value of a private member on a static class?
|
1
|
|||||||||||
|
|
|
Yes.
Edit: Code has been tested and fixed, and now works (on my machine). Edit #2: This is for a |
||||||||||
|
|
|
Try something like this:
I would think that is should work. |
||
|
|
|
|
As stated above, you can probably use System.Type::GetMembers() with BindingFlags::NonPublic | BindingFlags::Static, but only if you have the right ReflectionPermission. |
||
|
|
|
|
If you have full trust, you should be able to do:
However, if you run this on a system without full trust, the GetField call will fail, and this won't work. |
||||||
|
|
|
I suppose someone should ask whether this is a good idea or not? It creates a dependency on the private implementation of this static class. Private implementation is subject to change without any notice given to people using Reflection to access the private implementation. If the two classes are meant to work together, consider making the field internal and adding the assembly of the cooperating class in an [assembly:InternalsVisibleTo] attribute. |
||
|
|
