1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Reflection;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8.  
  9. namespace CommonLibrary
  10. {
  11. /// <summary>
  12. /// 性别
  13. /// </summary>
  14. public enum Sex
  15. {
  16. [Description("男")]
  17. Man = 1,
  18. [Description("女")]
  19. Woman = 2
  20. }
  21. /// <summary>
  22. /// 操作日志类型
  23. /// </summary>
  24. public enum OperationType
  25. {
  26. [Description("新建")]
  27. Create = 1,
  28. [Description("删除")]
  29. Delete = 2,
  30. [Description("更新")]
  31. Update = 3
  32. }
  33.  
  34. public enum YesNo
  35. {
  36. [Description("是")]
  37. Yes = 1,
  38. [Description("否")]
  39. No = 2
  40. }
  41.  
  42. /// <summary>
  43. ///
  44. /// </summary>
  45. public static class EnumHelper
  46. {
  47. /// <summary>
  48. /// 枚举转表格(无需获取说明时使用)
  49. /// </summary>
  50. /// <param name="type"></param>
  51. /// <param name="key"></param>
  52. /// <param name="value"></param>
  53. /// <returns></returns>
  54. public static DataTable EnumToDataTable(Type type, string key = "key", string value = "val")
  55. {
  56. string[] Names = System.Enum.GetNames(type);
  57.  
  58. Array Values = System.Enum.GetValues(type);
  59.  
  60. DataTable table = new DataTable();
  61. table.Columns.Add(value, System.Type.GetType("System.String"));
  62. table.Columns.Add(key, System.Type.GetType("System.Int32"));
  63. table.Columns[key].Unique = true;
  64. for (int i = 0; i < Values.Length; i++)
  65. {
  66. DataRow DR = table.NewRow();
  67. DR[value] = Names[i].ToString();
  68. DR[key] = (int)Values.GetValue(i);
  69. table.Rows.Add(DR);
  70. }
  71. return table;
  72. }
  73.  
  74. /// <summary>
  75. /// 枚举转表格(需要获取说明时使用)
  76. /// </summary>
  77. /// <param name="type"></param>
  78. /// <param name="key"></param>
  79. /// <param name="value"></param>
  80. /// <returns></returns>
  81. public static DataTable EnumToDataTable<T>(string key = "key", string value = "val")
  82. {
  83. Type type = typeof(T);
  84.  
  85. string[] Names = System.Enum.GetNames(type);
  86. Array Values = System.Enum.GetValues(type);
  87. string desc = string.Empty;
  88.  
  89. DataTable table = new DataTable();
  90. table.Columns.Add(value, System.Type.GetType("System.String"));
  91. table.Columns.Add(key, System.Type.GetType("System.Int32"));
  92. table.Columns[key].Unique = true;
  93. for (int i = 0; i < Values.Length; i++)
  94. {
  95. T t = (T)System.Enum.Parse(typeof(T), Values.GetValue(i).ToString());
  96.  
  97. MemberInfo[] memInfo = type.GetMember(t.ToString());
  98.  
  99. if (memInfo != null && memInfo.Length > 0)
  100. {
  101. object[] attrs = memInfo[0].GetCustomAttributes(typeof(DescriptionAttribute), false);
  102. if (attrs != null && attrs.Length > 0)
  103. {
  104. desc = ((DescriptionAttribute)attrs[0]).Description;
  105. }
  106. }
  107.  
  108. DataRow DR = table.NewRow();
  109. DR[value] = string.IsNullOrEmpty(desc) ? Names[i].ToString() : desc
  110. DR[key] = (int)Values.GetValue(i);
  111. table.Rows.Add(DR);
  112. }
  113. return table;
  114. }
  115.  
  116. /// <summary>
  117. /// 枚举转字典(无需获取描述时使用)
  118. /// </summary>
  119. /// <param name="type"></param>
  120. /// <returns></returns>
  121. public static IDictionary<int, string> EnumToDictionary(Type type)
  122. {
  123. string[] Names = System.Enum.GetNames(type);
  124.  
  125. Array Values = System.Enum.GetValues(type);
  126.  
  127. IDictionary<int, string> dic = new Dictionary<int, string>();
  128.  
  129. for (int i = 0; i < Values.Length; i++)
  130. {
  131. dic.Add((int)Values.GetValue(i), Names[i].ToString());
  132. }
  133.  
  134. return dic;
  135. }
  136.  
  137. /// <summary>
  138. /// 枚举转字典(需获取描述时使用)
  139. /// </summary>
  140. /// <typeparam name="T"></typeparam>
  141. /// <param name="type"></param>
  142. /// <returns></returns>
  143. public static IDictionary<int, string> EnumToDictionary<T>()
  144. {
  145. Type type = typeof(T);
  146.  
  147. string[] Names = System.Enum.GetNames(type);
  148.  
  149. Array Values = System.Enum.GetValues(type);
  150.  
  151. IDictionary<int, string> dic = new Dictionary<int, string>();
  152.  
  153. string desc = string.Empty;
  154.  
  155. for (int i = 0; i < Values.Length; i++)
  156. {
  157. T t = (T)System.Enum.Parse(typeof(T), Values.GetValue(i).ToString());
  158.  
  159. MemberInfo[] memInfo = type.GetMember(t.ToString());
  160.  
  161. if (memInfo != null && memInfo.Length > 0)
  162. {
  163. object[] attrs = memInfo[0].GetCustomAttributes(typeof(DescriptionAttribute), false);
  164. if (attrs != null && attrs.Length > 0)
  165. {
  166. desc = ((DescriptionAttribute)attrs[0]).Description;
  167. }
  168. }
  169. //GetEnumDesc(T);
  170.  
  171. dic.Add((int)Values.GetValue(i), string.IsNullOrEmpty(desc) ? Names[i].ToString() : desc);
  172. }
  173.  
  174. return dic;
  175. }
  176.  
  177. }
  178. }

  

c#枚举转字典或表格的更多相关文章

  1. OSS.Common获取枚举字典列表标准库支持

    上篇(.Net Standard扩展支持实例分享)介绍了OSS.Common的标准库支持扩展,也列举了可能遇到问题的解决方案.由于时间有限,同时.net standard暂时还没有提供对Descrip ...

  2. Vue 利用后端的数据字典和Map对象实现表格列字段动态转义的处理方案

    1.前言   Vue中,使用el-table组件,经常遇到列字段转义的问题.常规处理方法有以下两种: 方法1:在模板中使用v-if,直接转义.如: <el-table-column label= ...

  3. c#枚举使用详解

    简介 1. 枚举(enum type)通常用来表示一组常量.由于枚举是强类型的,这在编程中给我们提供了极大的方便. 2. 枚举的定义: public enum Sex { 男 = 0, 女 = 1 } ...

  4. C# 添加枚举中文资源

    在业务开发过程中,添加枚举,在固定枚举值的同时,也需要中文的文案. 如果不想添加语言资源项.添加枚举转语资源项,可以使用特性标记. 属性描述 DescriptionAttribute 先看案例: pu ...

  5. ASP.NET MVC 枚举类型转LIST CONTROL控件

    在实际应用中,我们经常会用到下拉框.多选.单选等类似的控件,我们可以统称他们为List Control,他们可以说都是一种类型的控件,相同之处都是由一个或一组键值对的形式的数据进行绑定渲染而成的. 这 ...

  6. C#.NET MVC 枚举转dictionary自动装载生成下拉框

      /// <summary> /// 枚举转SelectListItem /// </summary> public class Enum_Helper { /// < ...

  7. 爬取表格类网站数据并保存为excel文件

    本文转载自以下网站:50 行代码爬取东方财富网上市公司 10 年近百万行财务报表数据 https://www.makcyun.top/web_scraping_withpython6.html 主要学 ...

  8. [ PyQt入门教程 ] PyQt5中数据表格控件QTableWidget使用方法

    如果你想让你开发的PyQt5工具展示的数据显得整齐.美观.好看,显得符合你的气质,可以考虑使用QTableWidget控件.之前一直使用的是textBrowser文本框控件,数据展示还是不太美观.其中 ...

  9. [WinForm] DataGridView 绑定 DT && ComboBox 列绑定 Dict

    一  需求介绍 一般像枚举类型的数据,我们在数据库里存储着诸如(1.2.3.4-)或者("001"."002"."003"-)此类,但是界面 ...

随机推荐

  1. 安装MinGW出现 mingw-get: *** ERROR *** Get package:

    个人的解决方法: 1.手机开个热点让电脑连上. 2.在Setting里面讲proxy关闭.

  2. 磁盘文件系统管理与LVM逻辑卷

    一.磁盘以及分区管理 无论是Linux系统还是Windows系统.当现有硬盘的规划不能满足当前需求时.我们就需要将其重新规划和调整 实现上述操作我们就需要用到fdisk磁盘及分区管理工具.此工具是大多 ...

  3. ceph集群部署

    最近在学习 kubernetes 过程中,想实现 pod 数据的持久化.在调研的过程中,发现 ceph 在最近几年发展火热,也有很多案例落地企业.在选型方面,个人更加倾向于社区火热的项目,Gluste ...

  4. 通过 Serverless 加速 Blazor WebAssembly

    Blazor ❤ Serverless 我正在开发 Ant Design 的 Blazor 版本,预览页面部署在 Github Pages 上,但是加载速度很不理想,往往需要 1 分钟多钟才完成. 项 ...

  5. android wifi断开原因分析

    最近在解bug的过程中经常遇到密码正确但处于saved的状态,总结原因有已下几种: 1 在ASSOCIATING阶段由于丢包导致ASSOC REJECT 03-16 09:22:12.440 D/Wi ...

  6. 杭电-------2047阿牛的eof牛肉串(C语言写)

    /* 主要看最后一个是否为O,若为O,则倒数第二个不能为O,则为a[n-2]*1*2; 若不为O,则最后一个有两个选择则为a[n-1]*2 */ #include<stdio.h> ] = ...

  7. PWA(Progressive web apps),渐进式 Web 应用

    学习博客:https://www.jianshu.com/p/098af61bbe04 学习博客:https://www.zhihu.com/question/59108831 官方文档:https: ...

  8. 细读jsr中的yield语义,或者不是我们想象中的那样

    这只是我的个人观点,如有错误,希望你可以指出. 首先英文原版 中文译版 我觉得“不需要”还会让人产生误解,应该译为不一定要. 很多时候会被断章取义地理解,我们一定要有“不一定”,“可能”的意识,下面给 ...

  9. electron 安装过程出现未成功地运行

    问题 正文 产生问题得原因? 是因为之前安装了该程序,但是卸载的时候可能人为的直接删除了卸载程序. 这时候安装包会触发找到注册表中,该appid相同地址的卸载程序位置,然后进行调用,如果没有的话,只会 ...

  10. 1.3.5 详解项目中的资源——Android第一行代码(第二版)笔记

    所有以drawable开头的文件夹都是用来存放图片的. 所有以mipmap开头的文件夹都是用来存放应用图标的 所有以values开头的文件夹都是用来存放字符串.样式.颜色等配置的, layout文件夹 ...