c# – 变量可以用作属性吗?

c# – 变量可以用作属性吗?,第1张

概述我想做这样的事情: string currPanel = "Panel";currPanel += ".Visible" 现在,此时我有一个字符串变量,其属性名称只接受布尔值.我可以做一些这样的事情: <data type> currPanel = true; 所以实际属性Panel1.Visible接受它没有任何错误? 支持属性和字段,但仅支持实例: public static void Se 我想做这样的事情:

string currPanel = "Panel";currPanel += ".Visible"

现在,此时我有一个字符串变量,其属性名称只接受布尔值.我可以做一些这样的事情:

<data type> currPanel = true;

所以实际属性Panel1.Visible接受它没有任何错误?

解决方法 支持属性和字段,但仅支持实例:

public static voID SetValue(object obj,string name,object value){    string[] parts = name.Split('.');    if (parts.Length == 0)    {        throw new ArgumentException("name");    }    PropertyInfo property = null;    FIEldInfo fIEld = null;    object current = obj;    for (int i = 0; i < parts.Length; i++)    {        if (current == null)        {            throw new ArgumentNullException("obj");        }        string part = parts[i];        Type type = current.GetType();        property = type.GetProperty(part,BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance);        if (property != null)        {            fIEld = null;            if (i + 1 != parts.Length)            {                current = property.GetValue(current);            }            continue;        }        fIEld = type.GetFIEld(part,BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance);        if (fIEld != null)        {            property = null;            if (i + 1 != parts.Length)            {                current = fIEld.GetValue(current);            }            continue;        }        throw new ArgumentException("name");    }    if (current == null)    {        throw new ArgumentNullException("obj");    }    if (property != null)    {        property.SetValue(current,value);    }     else if (fIEld != null)    {        fIEld.SetValue(current,value);    }}

使用示例:

public class Panel{    public bool Visible { get; set; }}public class MyTest{    public Panel Panel1 = new Panel();    public voID Do()    {        string currPanel = "Panel1";        currPanel += ".Visible";        SetValue(this,currPanel,true);    }}

var mytest = new Mytest();mytest.Do();

请注意,我不支持索引器(如Panel1 [5] .something).支持int索引器是可行的(但另外30行代码).支持not-int索引器(如[“Hello”])或多键索引器(如[1,2])会非常困难.

总结

以上是内存溢出为你收集整理的c# – 变量可以用作属性吗?全部内容,希望文章能够帮你解决c# – 变量可以用作属性吗?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1232006.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-06
下一篇 2022-06-06

发表评论

登录后才能评论

评论列表(0条)

保存