2021-05-21 仓库温控系统(Winform) 05 获取类属性静态方法PropertyHelper
Posted 微软MVP Eleven
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2021-05-21 仓库温控系统(Winform) 05 获取类属性静态方法PropertyHelper相关的知识,希望对你有一定的参考价值。
public class PropertyHelper
/// <summary>
/// 返回指定类型的指定列名的属性数组
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="cols"></param>
/// <returns></returns>
public static PropertyInfo[] GetTypeProperties<T>(string cols)
Type type = typeof(T);
//将列名字符串转换成List,转换成小写
List<string> listCols = cols.GetStrList(',', true);
//获取所有属性
PropertyInfo[] properties = type.GetProperties();
if (listCols != null && listCols.Count > 0)
properties = properties.Where(p => listCols.Contains(p.GetColName().ToLower())).ToArray();
return properties;
以上是关于2021-05-21 仓库温控系统(Winform) 05 获取类属性静态方法PropertyHelper的主要内容,如果未能解决你的问题,请参考以下文章
2021-05-21 仓库温控系统(Winform) 19 窗体拖动功能实现
2021-05-21 仓库温控系统(Winform) 17 定时器的使用
2021-05-21 仓库温控系统(Winform) 05 获取类属性静态方法PropertyHelper
2021-05-21 仓库温控系统(Winform) 18 封装Panel中显示Form页方法