vote up 1 vote down star

Is there a way of determining the name of a constant from a given value?

For example, given the following:

public const uint ERR_OK = 0x00000000;

How could one obtain "ERR_OK"?

I have been looking at refection but cant seem to find anything that helps me.

flag

6 Answers

vote up 3 vote down check

In general, you can't. There could be any number of constants with the same value. If you know the class which declared the constant, you could look for all public static fields and see if there are any with the value 0, but that's all. Then again, that might be good enough for you - is it? If so...

public string FindConstantName<T>(Type containingType, T value)
{
    EqualityComparer<T> comparer = EqualityComparer<T>.Default;

    foreach (FieldInfo field in containingType.GetFields
             (BindingFlags.Static | BindingFlags.Public))
    {
        if (field.FieldType == typeof(T) &&
            comparer.Equals(value, (T) field.GetValue(null)))
        {
            return field.Name; // There could be others, of course...
        }
    }
    return null; // Or throw an exception
}
link|flag
Thanks Jon, this is totally along the line I was thinking...(FYI there is a missing closing parenthesis on the line that does equality check.) On testing this I get: Member 'object.Equals(object, object)' cannot be accessed with an instance reference; qualify it with a type name instead' is this a bug? It seems on the surface like this should work.. – Fraser Jun 30 at 15:51
Ah yes... I was missing a cast and a check for the field type. Fixing... – Jon Skeet Jun 30 at 16:17
Perfect, that is exactly what I needed. Saved me having to wrap a huge hardware SDK that has thousands of constants with Enums (as others kindly suggested). As a bouns I all ready know the constants are unique within the class. Very nice indeed, thank you. – Fraser Jun 30 at 23:57
vote up 3 vote down

You may be interested in Enums instead, which can be programmatically converted from name to value and vice versa.

link|flag
I'm working with a 3rd party Api and have considered converting the codes to an Enumaration, it's just there are lots...thanks :) – Fraser Jun 30 at 15:28
vote up 2 vote down

You won't be able to do this since constants are replaced at compilation time with their literal values.

In other words the compiler takes this:

class Foo
{
    uint someField = ERR_OK;
}

and turns it into this:

class Foo
{
    uint someField = 0;
}
link|flag
vote up 1 vote down

I suggest you use an enum to represent your constant.

Or

string ReturnConstant(uint val)
{
     if(val == 0x00000000)
       return "ERR_OK";
     else
       return null;
}
link|flag
vote up 0 vote down

I don't think you can do that in a deterministic way. What if there are multiple constants with the same value?

link|flag
vote up 0 vote down

The easiest way would be to switch to using an enum

link|flag

Your Answer

Get an OpenID
or

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