如何将泛型枚举参数传递给方法?

时间:2013-12-23 19:45:11

标签: c# enums

public static string GetCustomerIssueStatus(this HtmlHelper html, byte number)
{
    return Enum.GetName(typeof(Shared.Enumerators.CustomerIssueStatus), number);
}

如何创建此扩展方法,以接受所有枚举类型作为参数?

0 个答案:

没有答案