我在 vs2010 中使用 dot42。我试图获取一个类的字段列表。我在字段列表中有 0 个元素。
dot42 是否支持反射?
任何示例或帮助将不胜感激。
此致
我在 vs2010 中使用 dot42。我试图获取一个类的字段列表。我在字段列表中有 0 个元素。
dot42 是否支持反射?
任何示例或帮助将不胜感激。
此致
这是我正在做的一个例子:
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>();