I failed to convert List<string> to List<myEnumType>. I don't know why?

string Val = it.Current.Value.ToString(); // works well here
List<myEnumType> ValList = new List<myEnumType>(Val.Split(',')); // compile failed

Of cause myEnumType type defined as string enum type as this,

public enum myEnumType
{
    strVal_1,
    strVal_2,
    strVal_3,
}

Is there anything wrong? Appreciated for you replies.

link|improve this question

@All, Looks like it is not a stupid question. Thanks for all the rapid replies again. I will practice any of the solutions just tack it as my learning case. – Nano HE Dec 13 '10 at 7:26
feedback

4 Answers

up vote 9 down vote accepted

EDIT: Oops, I missed the C# 2 tag as well. I'll leave the other options available below, but:

In C# 2, you're probably best using List<T>.ConvertAll:

List<MyEnumType> enumList = stringList.ConvertAll(delegate(string x) {
    return (MyEnumType) Enum.Parse(typeof(MyEnumType), x); });

or with Unconstrained Melody:

List<MyEnumType> enumList = stringList.ConvertAll(delegate(string x) {
    return Enums.ParseName<MyEnumType>(x); });

Note that this does assume you really have a List<string> to start with, which is correct for your title but not for the body in your question. Fortunately there's an equivalent static Array.ConvertAll method which you'd have to use like this:

MyEnumType[] enumArray = Array.ConvertAll(stringArray, delegate (string x) {
    return (MyEnumType) Enum.Parse(typeof(MyEnumType), x); });

Original answer

Two options:

  • Use Enum.Parse and a cast in a LINQ query:

    var enumList = stringList
              .Select(x => (MyEnumType) Enum.Parse(typeof(MyEnumType), x))
              .ToList();
    

or

    var enumList = stringList.Select(x => Enum.Parse(typeof(MyEnumType), x))
                             .Cast<MyEnumType>()
                             .ToList();
  • Use my Unconstrained Melody project:

    var enumList = stringList.Select(x => Enums.ParseName<MyEnumType>(x))
                             .ToList();
    
link|improve this answer
@Jon Skeet, Looks like I posted a very simple question above. And I get a complex solution beyond my knowledge. I will try it. Thank you. :-) – Nano HE Dec 13 '10 at 7:23
@Jon Skeet, can he use this in C# 2.0?? – decyclone Dec 13 '10 at 7:25
@Nano HE: See the edit to allow C# 2 code. I would strongly advise you to update to a more recent version of C# if possible :) – Jon Skeet Dec 13 '10 at 7:25
@decyclone: I hadn't spotted the C# 2 tag, but I've updated the answer appropriately. – Jon Skeet Dec 13 '10 at 7:26
@Jon Skeet: +1 for ConvertAll + anonymous delegate – decyclone Dec 13 '10 at 7:27
show 1 more comment
feedback

In C# 2.0:

List<myEnumType> ValList = new List<myEnumType>();
foreach (string x in Val.Split(','))
    ValList.Add((MyEnumType) Enum.Parse(typeof(MyEnumType), x));
link|improve this answer
foreach Loop method looks great, it works quite well! – Nano HE Dec 13 '10 at 7:55
feedback
        List<String> list = new List<String>();

        list.Add("strVal_1");
        list.Add("strVal_2");
        list.Add("strVal_3");

        List<myEnumType> enumList = new List<myEnumType>();

        foreach (var item in list)
        {
            enumList.Add((myEnumType)Enum.Parse(typeof(myEnumType), item));
        }
link|improve this answer
feedback

Create an extension method and with Select do the Work:

public static class ExtensionClass
{
    public static myEnumType GetEnumValue(this string input)
    {
        if (input == myEnumType.strVal_1.ToString())
            return myEnumType.strVal_1;
        return input == myEnumType.strVal_2.ToString() ? myEnumType.strVal_2 : myEnumType.strVal_3;
    }
}

List<myEnumType> ValList = new List<myEnumType>(Val.Split(',').Select(p=>p.GetEnumValue())); 

I missed c#2.0 tag :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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