我在vs2010上使用dot42。我试图得到一个类的字段列表。我在字段列表中得到0个元素。
dot42是否支持反射?
任何示例或帮助将不胜感激。
最好的问候
答案 0 :(得分:0)
这是我正在做的一个例子:
public class Class1
{
public int publicInt;
private string privateString;
public string Value { get; set; }
public void Method1()
{
throw new NotImplementedException();
}
}
我有泛型类的anthor类:
public class Class2
{
public void GenericMethod<T>() where T : new()
{
Type entityType = typeof(T);
//Here, i want to get the FieldInfo list of T.
//typeof(T) does not work also.
}
}
在MainActivity中,当我点击按钮时,我有:
Class2 c2 = new Class2();
c2.GenericMethod<Class1>();