enum MyEnum
{
type1,
type2,
type3
}
public void MyMethod<T>()
{
...
}
如何使enum在每個枚舉上觸發MyMethod<T>
?在模板中枚舉類型的foreach
我嘗試用
foreach (MyEnum type in Enum.GetValues(typeof(MyEnum)))
{...}
但還是什麼都不知道如何使用這個type
裏面的foreach與 MyMethod<T>
爲T
你想做些什麼? – V4Vendetta 2012-07-06 11:54:24