以下代码(在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。有人有想法吗?
答案 0 :(得分:2)
你有这个:
public class Subject
{
public string Name;
...
}
在您的类型定义Name
中,字段不是属性,您必须将类型更改为:
public class Subject
{
public string Name { get; set; }
...
}
如果你想将Name
作为字段(坏主意),你可以使用:
FieldInfo pr = type.GetField("Name");