/// <summary> /// get enum description by name /// </summary> /// <typeparam name="T">enum type</typeparam> /// <param name="enumItemName">the enum name</param> /// <returns></returns> pu…
C#中可以对枚举类型用Description特性描述. 如果需要对Description信息获取,那么可以定义一个扩展方法来实现.代码如下: public static class EnumExtensions { public static string GetDescription(this object value) { if (value==null) return string.Empty; Type type = value.GetType(); var fieldInfo = ty…
前几天在CSDN社区看到一篇<如何得到自身单元名称>的帖子,其中一位名为sdzeng网友给出了答案.受此启发,自己写了一个函数,用来获取指定类的所有祖先类的名称及其所在的单元名称. //参数说明://AClass:需要获取祖先类的类//ASeries:是一个字符串列表,用来存放返回的祖先类及其所在单元的名称procedureGetInheritanceSeries(AClass:TClass;outASeries:TStringList);varPTD:PTypeData;PTI:PTypeI…
package com.example.grenaderose.redthunder.utils; import android.content.Context; import android.content.pm.PackageInfo; import android.content.pm.PackageManager; /** * Description : * Author : hanbao * Date : 2019/3/9 0009 下午 4:30 */ public class Pa…
用反射控制的,不过获取属性名称的方法,用方法形式获取的,不知道消耗大不大 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Qxun.Framework.Utility; using System.Linq.Expressions; namespace ConsoleApplication1 { clas…
我们需要获取类,属性,方法的描述.这个跟获取枚举的描述一样,需要我们通过反射来做.这还需要我们的利用System.ComponentModel:Description  的属性来完成. 新建一个类:使用的是:  System.ComponentModel:Description [Description("类的描述")] public class TestDes { [Description("id值")] public int Id { get; set; } […
这个是枚举类,可能大家根据个人需求不同,不是很需要,但是跟着做那个项目的朋友会用到 我在这贴一下代码 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; namespace Common.Enums { /// <summary> /// 枚举独特类 /// add yuangang by 2016-05-10 ///…
版权声明:若无来源注明,Techie亮博客文章均为原创. 转载请以链接形式标明本文标题和地址: 本文标题:QMetaEnum利用Qt元数据实现枚举(enum)类型值及字符串转换     本文地址:http://techieliang.com/2017/12/622/ 文章目录 1. 介绍 2. 自定义枚举类型 3. QMetaEnum使用 1. 介绍 QMetaEnum类属于Qt core模块,提供了一系列针对枚举类型的操作函数,当然不能操作任意枚举类型,若想进行自定义枚举的操作,首先需要对枚举…
可以方便的实现枚举 枚举 public enum DeptType { [Description("科室1")] Professional = , [Description("科室2")] Administrative = , [Description("科室3")] Quality = , [Description("其他")] Other = } 将枚举变为list var list=King.EnumHelper.Enu…
NX9+VS2012 public: void SetBlockUIShow(); void EnumInt::SetBlockUIShow() { //获取枚举控件 PropertyList* EnumProps = enum0->GetProperties(); int EnumValue = EnumProps->GetEnum("Value"); delete EnumProps; EnumProps = NULL; //得到ini类型值 //条件判断,当枚举为下拉…