手机
当前位置:查字典教程网 >编程开发 >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# 写入XML文档三种方法详细介绍

C# 语音功能的实现方法

C#图片压缩的实现方法

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

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

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

解决C# winForm自定义鼠标样式的两种实现方法详解

使用C#开发Socket通讯的方法

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

精品推荐
分类导航