vote up 2 vote down star
1

Is there any way to use reflection to get the value of a private member on a static class?

flag

31% accept rate
You say field in the title, but member in the body. Which is it? – strager Mar 10 at 2:20
@strager: What's the difference? The two are synonymous. – Randolpho Mar 10 at 2:38
@Randolpho ... all fields are members, not all members are fields. (e.g. methods and properties are also members) – Daniel LeCheminant Mar 10 at 2:39
@Randolpho: See msdn.microsoft.com/en-us/library/… (C# terminology) – Daniel LeCheminant Mar 10 at 2:40
Sorry for the confusion it should have been field in the body. – chief7 Mar 10 at 11:17

5 Answers

vote up 8 vote down check

Yes.

Type type = typeof(TheClass);
FieldInfo info = type.GetField(name, BindingFlags.NonPublic | BindingFlags.Static);
object value = info.GetValue(null);

Edit: Code has been tested and fixed, and now works (on my machine).

Edit #2: This is for a Field. For a Property, change type.GetField to type.GetProperty. You can also access private methods in a similar fashion.

link|flag
Works on my machine. The most utter pharse by a developer. – David Basarab Mar 10 at 2:22
Followed closely by "it is supposed to do that". – chuckj Mar 10 at 2:48
So the key is to pass in null for the object on the GetValue call. Thats what I was missing. Thanks! – chief7 Mar 10 at 11:18
@chuckj: I thought "it wasn't supposed to do that". @chief7 - yep, null is the 'this' reference for static members. – configurator Mar 10 at 16:00
This answer is certified correct: codinghorror.com/blog/archives/… – configurator Mar 10 at 16:01
vote up 0 vote down

Try something like this:

Type type = typeof(MyClass);
MemberInfo[] members = type.GetMembers(BindingFlags.NonPublic | BindingFlags.Static);

I would think that is should work.

link|flag
vote up 0 vote down

As stated above, you can probably use System.Type::GetMembers() with BindingFlags::NonPublic | BindingFlags::Static, but only if you have the right ReflectionPermission.

link|flag
vote up 0 vote down

If you have full trust, you should be able to do:

Type t = typeof(TheClass);
FieldInfo field = t.GetField("myFieldName", BindingFlags.NonPublic | BindingFlags.Static);
object fieldValue = field.GetValue(myObject);

However, if you run this on a system without full trust, the GetField call will fail, and this won't work.

link|flag
GetField returns a FieldInfo, not an array. – configurator Mar 10 at 2:18
Indeed. This code will not compile, because GetField is invoked improperly. See: msdn.microsoft.com/en-us/library/… – strager Mar 10 at 2:23
Sorry about that - part of what happens when I'm typing these a little too fast. blush I fixed it, so it should be correct now. – Reed Copsey Mar 10 at 2:33
vote up 1 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.