Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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
    	}
    }
share|improve this question
6  
Can you explain why you can't reference it more directly? There's a bit of code smell here. – Erich Mirabal Jul 14 '09 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 '09 at 14:30
3  
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 '09 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 '09 at 14:42
(See my edited answer for an example of that.) – Jon Skeet Jul 14 '09 at 14:50

3 Answers

up vote 19 down vote accepted

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.

share|improve this answer
1  
+1 Too fast! :) – Andrew Hare Jul 14 '09 at 14:15
4  
+1 for actually reading the question :) – Yohnny Jul 14 '09 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 '09 at 14:33
@Robert: That's exactly his situation though. See the comments to the question. – Jon Skeet Jul 14 '09 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 '09 at 15:55

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

share|improve this answer

You simply have to use: MyClass.i

To elaborate a little, in order to use a static member, you have to know about the class. And having an object reference is irrelevant. The only way an object would matter is when you would have 2 distinct classes that both have an identical looking member:

class A { public static int i; }
class B { public static int i; }

But A.i and B.i are completely different fields, there is no logical relation between them. Even if B inherits from A or vice versa.

share|improve this answer
"using myObject only" ... – Јοеу Jul 14 '09 at 14:19
I'd like to be able to access static member <code>i</code> using reference <code>myObject</code>, only. – JaysonFix Jul 14 '09 at 14:19
Johannes, I read that, but don't think it is a real(istic) question. – Henk Holterman Jul 14 '09 at 14:26
JaysinFix, in the sample you give MyClass.i is the only sensible answer, maybe you can explain it a little better? This one begs for a 'why' – Henk Holterman Jul 14 '09 at 14:29
Henk, see my above comment under the question, itself. – JaysonFix Jul 14 '09 at 15:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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