我是新來枚舉。幫助使用枚舉和Enum.Parse
我有了這個枚舉:
public enum Categories
{
Animals,
Animations,
Accessories,
Apearance,
Clothing,
Gadgets,
Land,
Scripts,
Vehicles,
Weapons,
Other
}
然後,我有這個變量:private Categories Category;
我試圖分析用戶輸入(串),這樣Category
將等於正確的枚舉。
this.Category = Enum.Parse(Categories ,cat);
我得到這個錯誤:
'Product.Categories' is a 'type' but is used like a 'variable'
我希望你明白我想說什麼。
'this.Category'確實被聲明爲這樣:) – BoltClock 2011-05-05 16:52:05