2009年2月5日 星期四

列出所有列舉內容

public enum ABC
{
 x = 1,
 y = 2,
 z = 3
}

//列出所有列舉內容
foreach (string str in Enum.GetNames(typeof(ABC)))
 System.Diagnostics.Debug.WriteLine(str);

//字串轉對應的列舉值
int i = (int)Enum.Parse(typeof(ABC) , "z");
System.Diagnostics.Debug.WriteLine(i.ToString());

沒有留言:

張貼留言