c# – 按名称获取字段

前端之家收集整理的这篇文章主要介绍了c# – 按名称获取字段前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试创建一个可以从其对象返回字段的函数.

这是我到目前为止所拥有的.

public class Base
{
    public string thing = "Thing";
    public T GetAttribute<T>(string _name)
    {
        return (T)typeof(T).GetProperty(_name).GetValue(this,null);
    }
}

我理想的是打电话:

string thingy = GetAttribute<string>("thing");

但是我有一种感觉,当我阅读这篇文章时我得到了错误的结论,因为我一直得到空引用异常.

解决方法

第一件事 – 事情是一个领域,而不是一个财产.

另一件事是您必须更改参数类型才能使其正常工作:

public class Base {

   public string thing = "Thing";

   public T GetAttribute<T> ( string _name ) {
      return (T)typeof(Base).GetField( _name ).GetValue (this,null);
   }   
}

顺便说一句 – 您可以通过引用实例来获取属性/字段值:

var instance = new Base();
var value = instance.thing;
原文链接:https://www.f2er.com/csharp/96958.html

猜你在找的C#相关文章