反射自定义类型返回null

时间:2013-10-16 10:03:32

标签: c# reflection properties null

以下代码(在StackOverflow上找到)有效:

object ob = new { Name = "Erwin Okken", Age = 23, Position = new Point(2, 5) };
Type type = ob.GetType();
PropertyInfo pr = type.GetProperty("Name");
string value = pr.GetValue(ob, null).ToString(); // Erwin Okken

但是,如果我使用自己的类,则不起作用:

public class Subject
{
    public string Name;
    public int Age;
    public Point Position;

    public string Stringtest;
    public int IntTest;

    public Subject()
    {

    }
}

Type type = ob.GetType();
PropertyInfo pr = type.GetProperty("Name"); // null
string value = pr.GetValue(ob, null).ToString();

我尝试了所有Bindingflags,但变量“pr”保持为null。有人有想法吗?

1 个答案:

答案 0 :(得分:2)

你有这个:

public class Subject
{
    public string Name;
    ...
}

在您的类型定义Name中,字段不是属性,您必须将类型更改为:

public class Subject
{
    public string Name { get; set; }
    ...
}

如果你想将Name作为字段(坏主意),你可以使用:

FieldInfo pr = type.GetField("Name");