我enum
幫手泛型類在那裏我有方法EnumDescription()
要調用它,我必須去這樣EnumHelper<Enumtype>.EnumDescription(value)
我想要實現enum
擴展,它基於我的枚舉的輔助方法方法EnumDescription(this Enum value)
EnumHelper<T>.EnumDescription(value)
幫助枚舉擴展方法
有一件事我被困住了。這裏是我的代碼:
public static string EnumDescription(this Enum value)
{
Type type = value.GetType();
return EnumHelper<type>.EnumDescription(value); //Error here
}
我得到一個錯誤The type or namespace name 'type' could not be found (are you missing a using directive or an assembly reference?)
,請問有什麼可以做,使工作?
你想給Enum一個很好的描述? – PostMan 2011-02-16 00:26:05