手机
当前位置:查字典教程网 >编程开发 >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#实现获取不同对象中名称相同属性的方法

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

C# WinForm捕获全局变量异常 SamWang解决方法

C#保存图片到数据库并读取显示图片的方法

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

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

配置C#的系统环境变量的方法

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

c# 可选参数、命名参数

c#中分割字符串的几种方法

精品推荐
分类导航