手机
当前位置:查字典教程网 >编程开发 >C#教程 >C# 获取属性名的方法
C# 获取属性名的方法
摘要:复制代码代码如下:usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;...

复制代码 代码如下:

using System;

using System.Collections.Generic;

using System.Linq;

using System.Linq.Expressions;

using System.Text;

using System.Threading.Tasks;

namespace ConsoleApplication

{

class Program

{

class Test

{

public string PropertyJustForTest1 { get; set; }

public Test PropertyJustForTest2 { get; set; }

}

static void Main(string[] args)

{

Test test = new Test();

Console.WriteLine(GetPropertyNameHelper.GetPropertyName<object>(() => test.PropertyJustForTest1));

Console.WriteLine(GetPropertyNameHelper.GetPropertyName<object>(() => test.PropertyJustForTest2));

}

}

static class GetPropertyNameHelper

{

public static string GetPropertyName<T>(Expression<Func<T>> express)

{

var memberExpress = express.Body as MemberExpression;

if (memberExpress != null)

{

return memberExpress.Member.Name;

}

else

{

return string.Empty;

}

}

}

}

【C# 获取属性名的方法】相关文章:

c#.net 常用函数和方法集

C#操作注册表的方法

C#实现获取不同对象中名称相同属性的方法

C# 获取系统进程的用户名

C#中判断本地系统的网络连接状态的方法

C# 获取程序集版本、文件版本

SQL语句删除和添加外键、主键的方法

c#中虚函数的相关使用方法

用C#编写获取远程IP,MAC的方法

C#获取系统版本信息方法

精品推荐
分类导航