我未能將List<string>
轉換爲List<myEnumType>
。我不知道爲什麼?如何將列表<string>轉換爲列表<myEnumType>?
string Val = it.Current.Value.ToString(); // works well here
List<myEnumType> ValList = new List<myEnumType>(Val.Split(',')); // compile failed
定義爲字符串枚舉類型,因爲這原因myEnumType
類型,
public enum myEnumType
{
strVal_1,
strVal_2,
strVal_3,
}
這有什麼錯?讚賞你的回覆。
@All,看起來這不是一個愚蠢的問題。再次感謝所有快速回復。我會練習任何解決方案,只是把它作爲我的學習案例。 – 2010-12-13 07:26:46