博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c#通过反射获取自定义属性
阅读量:4992 次
发布时间:2019-06-12

本文共 942 字,大约阅读时间需要 3 分钟。

PropertyInfo[] properties = typeof(BPM_ContractApproval_Purchase).GetProperties();                foreach (var property in properties)                {                    string text = Convert.ToString(property.GetValue(entity));                    var dingtalkAttribute = property.GetCustomAttribute(typeof(DingTalkFormInfoAttribute)) as DingTalkFormInfoAttribute;                    if (dingtalkAttribute != null)                    {                        var attribute = property.GetCustomAttribute(typeof(DisplayAttribute)) as DisplayAttribute;                        customeAttribute.Add(new BPM_Attribute_Dto()                        {                            Label = attribute != null ? attribute.Name : "",                            Text = text,                            OrderIndex = dingtalkAttribute.Index                        });                    }                }

 

转载于:https://www.cnblogs.com/xuguanghui/p/5653506.html

你可能感兴趣的文章
Android UI 优化 使用<include/>和 <merge />标签
查看>>
linux命令--使用fsck修复文件系统
查看>>
洛谷 P2324 [SCOI2005]骑士精神
查看>>
leetcode(64)最小路径和
查看>>
Select文字居右显示
查看>>
mycat操作MySQL第一篇:全局表
查看>>
MySQL数据库表分区
查看>>
python多个装饰器的执行顺序
查看>>
岗顶-一图一世界
查看>>
一步步构造自己的vue2.0+webpack环境
查看>>
分页类
查看>>
Python装饰器的个人小理解
查看>>
为什么百万医疗险越来越多,到底选哪款?
查看>>
如何检测 51单片机IO口的下降沿
查看>>
扫描识别控件Dynamic .NET TWAIN使用教程:如何将事件添加到应用程序中
查看>>
创建和修改主键 (SQL)
查看>>
2018-2019 ICPC, NEERC, Southern Subregional Contest(训练记录)
查看>>
20145233 《信息安全系统设计基础》第7周学习总结
查看>>
linux设备驱动程序第3版学习笔记(例程2--hellop.c)
查看>>
玩转storm
查看>>