当前位置:  开发笔记 > 编程语言 > 正文

为什么GetProperty找不到它?

如何解决《为什么GetProperty找不到它?》经验,为你挑选了1个好方法。

我正在尝试使用反射从类中获取属性.以下是我所看到的一些示例代码:

using System.Reflection;
namespace ConsoleApplication
{
    class Program
    {
        static void Main(string[] args)
        {
            PropertyInfo[] tmp2 = typeof(TestClass).GetProperties();
            PropertyInfo test = typeof(TestClass).GetProperty(
               "TestProp", BindingFlags.Public | BindingFlags.NonPublic);
        }
    }

    public class TestClass
    {
        public Int32 TestProp
        {
            get;
            set;
        }
    }
}

当我追溯到这一点时,这就是我所看到的:

当我使用获取所有属性时GetProperties(),结果数组有一个条目,用于属性TestProp.

当我尝试TestProp使用时GetProperty(),我得到null.

我有点难过; 我无法在MSDN中找到任何关于GetProperty()向我解释此结果的内容.有帮助吗?

编辑:

如果我添加BindingFlags.InstanceGetProperties()通话中,则找不到属性,句点.这更加一致,并使我相信TestProp由于某种原因不被视为实例属性.

那为什么会这样?我需要对该属性做什么才能将此属性视为实例属性?



1> Andrew Rolli..:

添加BindingFlags.InstanceGetProperty通话.

编辑:回应评论......

以下代码返回该属性.

注意:在尝试检索它之前实际让你的属性做某事是个好主意(VS2005):)

using System.Reflection;
namespace ConsoleApplication
{
    class Program
    {
        static void Main(string[] args)
        {
            PropertyInfo[] tmp2 = typeof(TestClass).GetProperties();
            PropertyInfo test = typeof(TestClass).GetProperty(
                "TestProp",
                BindingFlags.Instance | BindingFlags.Public |
                    BindingFlags.NonPublic);

            Console.WriteLine(test.Name);
        }
    }

    public class TestClass
    {
        public Int32 TestProp
        {
            get
            {
                return 0;
            }
            set
            {
            }
        }
    }
}

推荐阅读
小色米虫_524
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有