1 Star 0 Fork 1

Yi_zihao/融合终端

forked from 易自豪/融合终端 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
CommonHelper.cs 826 Bytes
一键复制 编辑 原始数据 按行查看 历史
Yi_zihao 提交于 2021-04-19 16:59 . 第一次提交
using System;
using System.Collections.Generic;
using System.Text;
namespace GWMergeTerminal.STD
{
public static class CommonHelper
{
/// <summary>
/// 根据字段名获取值
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="t"></param>
/// <param name="fieldName"></param>
/// <returns></returns>
public static object GetValue<T>(this T t, string fieldName)
{
try
{
if (t != null)
{
var value = t.GetType().GetProperty(fieldName).GetValue(t, null);
return value ?? "";
}
}
catch (Exception)
{
throw;
}
return null;
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/yi_zihao/GWMergeTerminal.git
git@gitee.com:yi_zihao/GWMergeTerminal.git
yi_zihao
GWMergeTerminal
融合终端
master

搜索帮助