vote up 1 vote down star

I'd like to get a string representation of the underlying type of the enum.

    Dim target As System.ConsoleColor = ConsoleColor.Cyan
    Dim actual = 'What goes here?
    Dim expected = "11"
flag

78% accept rate
Not sure I understand: do you want the integer value backing ConsoleColor.Cyan, do you want the string "Cyan", or do you want the string "ConsoleColor.Cyan"? – Joel Coehoorn Jan 30 at 20:49
I want the integer value. – Larsenal Jan 30 at 20:52

1 Answer

vote up 1 vote down check

In C# terms; you could assume int:

int val = (int) target;
string valString = val.ToString();

or if you don't want the assumption:

object val = Convert.ChangeType(target,
    Enum.GetUnderlyingType(typeof(ConsoleColor)));
string valString = val.ToString();
link|flag
The results of your example are: valueName="ConsoleColor" and typeName="Cyan" – Larsenal Jan 30 at 20:51
(updated example) – Marc Gravell Jan 30 at 20:51

Your Answer

Get an OpenID
or

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