Possible Duplicate:
Type.GetFields() - only returning “public const” fields

I have a class which looks like as follows:

public class MyConstants
{
    public const int ONE = 1;
    public const int TWO = 2;

    Type thisObject;
    public MyConstants()
    {
        thisObject = this.GetType();
    }

    public void EnumerateConstants()
    {
        PropertyInfo[] thisObjectProperties = thisObject.GetProperties(BindingFlags.Public);
        foreach (PropertyInfo info in thisObjectProperties)
        {
            //need code to find out of the property is a constant
        }
    }
}

Bascially it is trying to reflect itself. I know how to reflect fields ONE, & TWO. But how do I know if it is a constant or not?

link|improve this question

60% accept rate
3  
Effectively dupe of stackoverflow.com/questions/1287797 – Jon Skeet Aug 20 '09 at 20:12
I take that back...I cannot find the fields ONE & TWO. – deostroll Aug 20 '09 at 20:15
They aren't just fields, they're static fields, not instance fields. – Pavel Minaev Aug 20 '09 at 20:28
feedback

closed as exact duplicate by Jon Skeet, Mehrdad Afshari, Sean Bright, LukeH, ShuggyCoUk Aug 20 '09 at 20:37

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

up vote 1 down vote accepted

That's because they're fields, not properties. Try:

    public void EnumerateConstants() {        
        FieldInfo[] thisObjectProperties = thisObject.GetFields();
        foreach (FieldInfo info in thisObjectProperties) {
            if (info.IsLiteral) {
                //Constant
            }
        }    
    }

Edit: DataDink's right, it's smoother to use IsLiteral

link|improve this answer
uh yeah realized it too late... Yeah is anything const essentially static too? – deostroll Aug 20 '09 at 20:36
DataDink's answer is actually a little smoother. And yes; try adding && info.IsStatic. – Walt W Aug 20 '09 at 20:38
wht is the difference between IsLiteral & IsStatic if both are true? – deostroll Aug 21 '09 at 6:41
Um . . . something can be static but not constant. – Walt W Aug 21 '09 at 14:11
To elaborate, something that's constant and set at program initialization can never change for any independent object instance, so it might as well be static, given that no two instances will ever have different values of it. However, something that's static does not necessarily need to be constant (literal), as its value may change throughout the life of the program. Make sense? – Walt W Aug 21 '09 at 14:20
feedback

FieldInfo objects actually have a ton of "IsSomething" booleans right on them:

        var m = new object();
        foreach (var f in m.GetType().GetFields())
            if (f.IsLiteral)
            {
                // stuff
            }

Which saves you a tiny ammount of code over checking the attributes anyways.

link|improve this answer
feedback

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