public static String ToEnumName(this int? source, Type e) { if (!source.HasValue) throw new ArgumentException("enum转换title 需要值"); return Enum.Parse(e, source.Value.ToString()).ToString(); }
用法 1.ToEnumName(typeof(AssetEnum))
时间: 2024-10-09 18:23:56
public static String ToEnumName(this int? source, Type e) { if (!source.HasValue) throw new ArgumentException("enum转换title 需要值"); return Enum.Parse(e, source.Value.ToString()).ToString(); }
用法 1.ToEnumName(typeof(AssetEnum))