标签: c# enums
public static string GetCustomerIssueStatus(this HtmlHelper html, byte number) { return Enum.GetName(typeof(Shared.Enumerators.CustomerIssueStatus), number); }
如何创建此扩展方法,以接受所有枚举类型作为参数?