[.CS]
protected enum myType : int
{
Women = 0,
Boy = 1,
other = 3
}
protected void btnOK_Click(object sender, EventArgs e)
{
myType str = (myType)Enum.Parse(typeof(myType), txtInput.Text.Trim());
// (int)myType , enum 的值
// .ToString(),enum 的項目
lblResult.Text = str.ToString();
}
參考連結
http://www.dotblogs.com.tw/dc690216/archive/2009/09/16/10666.aspx
留言
張貼留言