vote up 1 vote down star
2

In C#, suppose you have an object (say, myObject) that is an instance of class MyClass. Using myObject only, how would you access a static member of MyClass?

class MyClass
    {
    public static int i = 123 ;
    }

class MainClass
    {
    public static void Main()
    	{
    	MyClass myObject = new MyClass() ;
    	myObject.GetType().i = 456 ; //  something like this is desired,
    				     //  but erroneous
    	}
    }
flag

6  
Can you explain why you can't reference it more directly? There's a bit of code smell here. – Erich Mirabal Jul 14 at 14:16
My method takes a parameter that is of type Block, but the actual argument passed is of a class that is of one of several subclasses of Block, and each subclass is to have its own copy of the static member (this role played by "i" in the code of my question). – JaysonFix Jul 14 at 14:30
2  
IMHO, quite often the best answer to "How do I do this?" is "Don't do that." I strongly suspect this is one of those times. – tnyfst Jul 14 at 14:32
Yes, this feels like an ugly (and slow) way to do it compared with having a polymorphic property which could always return the appropriate value. – Jon Skeet Jul 14 at 14:42
(See my edited answer for an example of that.) – Jon Skeet Jul 14 at 14:50

3 Answers

vote up 16 vote down check

You'd have to use reflection:

Type type = myObject.GetType();
FieldInfo field = type.GetField("i", BindingFlags.Public |
                                     BindingFlags.Static);
int value = (int) field.GetValue(null);

I'd generally try to avoid doing this though... it's very brittle. Here's an alternative using normal inheritance:

public class MyClass
{
    public virtual int Value { get { return 10; } }
}

public class MyOtherClass : MyClass
{
    public override int Value { get { return 20; } }
}

etc.

Then you can just use myObject.Value to get the right value.

link|flag
1  
+1 Too fast! :) – Andrew Hare Jul 14 at 14:15
4  
+1 for actually reading the question :) – Yohnny Jul 14 at 14:16
With the details posted it would seem over kill since he can just reference MyClass.StaticMember It only really matters if myObject could be more than one Class and you can't know which at development. – Robert Jul 14 at 14:33
@Robert: That's exactly his situation though. See the comments to the question. – Jon Skeet Jul 14 at 14:41
Sorry it's taken me so long to thank you, but I've been working on getting your ideas to work in my case. Thanks, Jon, and everyone! – JaysonFix Jul 14 at 15:55
vote up 5 vote down

If you have control of MyClass and need to do this often, I'd add a member property that gives you access.

link|flag
vote up 1 vote down

class_name.member_name, eg. MyClass.i

link|flag
thats not what the question asked. – Stan R. Jul 14 at 15:10

Your Answer

Get an OpenID
or

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