vote up 1 vote down star

I have read documentation that states that ‘given the type of the enum, the GetValues() method of System.Enum will return an array of the given enum's base type’ ie int, byte etc

However I have been using the GetValues method and all I keep getting back is an array of type Enums. Am I missing something??


public enum Response
{
    Yes = 1,
    No = 2,
    Maybe = 3
} 

foreach (var value in Enum.GetValues(typeof(Response))) { var type = value.GetType(); // type is always of type Enum not of the enum base type }

Thanks

flag

0% accept rate

2 Answers

vote up 8 vote down

You need to cast the result to the actual array type you want

(Response[])Enum.GetValues(typeof(Response))

as GetValues isn't strongly typed

EDIT: just re-read the answer. You need to explicitly cast each enum value to the underlying type, as GetValues returns an array of the actual enum type rather than the base type. Enum.GetUnderlyingType could help with this.

link|flag
Also, just to reiterate the point, 'var' is strongly-typed. It won't magically get set to the actual type of the result. – Roger Lipscombe Sep 9 at 9:57
Regarding your edit : no, it's not necessary to cast each value individually. Casting the array as you wrote in your code works fine – Thomas Levesque Sep 9 at 10:24
vote up 4 vote down

Can you please refer to the documentation you mention. The MSDN documentation on Enum.GetValues does not mention anything like that (quote from that page):

Return Value

Type: System.Array

An Array of the values of the constants in enumType. The elements of the array are sorted by the binary values of the enumeration constants.

link|flag
Sorry I used the word documentation. I should have said it was an online article I read at this url: csharp-station.com/Tutorials/Lesson17.aspx/… – Cragly Sep 9 at 10:32
@Cragly: The result returned from Enum.GetValues in that sample will be of the type Volume[]. However, note how the for loop is set up: foreach (byte val in Enum.GetValues(.... This means that the code will cast each Volume value in the array to a byte. – Fredrik Mörk Sep 9 at 10:43

Your Answer

Get an OpenID
or

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