你如何获得一个C#属性名称与反思的字符串

你如何获得一个C#属性名称与反思的字符串

本文介绍了你如何获得一个C#属性名称与反思的字符串?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

可能重复:结果
的。

You can use Expressions to achieve this quite easily. See this blog for a sample.

这使得它使您可以通过创建一个lambda表达式,并拉出名称。例如,实现INotifyPropertyChanged的可返工做这样的事情:

This makes it so you can create an expression via a lambda, and pull out the name. For example, implementing INotifyPropertyChanged can be reworked to do something like:

public int MyProperty {
    get { return myProperty; }
    set
    {
        myProperty = value;
        RaisePropertyChanged( () => MyProperty );
    }
}

为了映射你的等效,使用引用体现类,你会做这样的事情:

In order to map your equivalent, using the referenced "Reflect" class, you'd do something like:

string propertyName = Reflect.GetProperty(() => SomeProperty).Name;



维奥拉 - 属性的名称,而不串魔术

Viola - property names without magic strings.

这篇关于你如何获得一个C#属性名称与反思的字符串?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-22 19:22