我正在尝试使用反射从类中获取属性。以下是我所看到的一些示例代码:
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.Instance
添加到GetProperties()
来电,则找不到任何属性,期限。这更加一致,并让我相信TestProp
由于某种原因不被视为实例属性。
为什么会这样?我需要对该属性做什么才能将此属性视为实例属性?
答案 0 :(得分:12)
将BindingFlags.Instance
添加到GetProperty
来电。
编辑:回应评论......
以下代码返回属性。
注意:在尝试检索它之前实际让你的属性做某事是个好主意(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
{
}
}
}
}
答案 1 :(得分:1)
尝试添加以下标记:
System.Reflection.BindingFlags.Instance
编辑:这有效(至少对我而言)
PropertyInfo test = typeof(TestClass).GetProperty("TestProp", BindingFlags.Public | BindingFlags.Instance);
Console.WriteLine(test.Name);
答案 2 :(得分:0)
您需要指定它是静态还是实例(或两者)。