我想写个方法,传入类就可以从xml中得到相应的值,xml读取那块我写两个工具类,负责读取。
private T SetFiledsValue<T>(XmlMachine xmlMachine) where T : new()
{
T result = new T();
Type type = typeof(T);
FieldInfo[] fields = type.GetFields();
foreach (FieldInfo field in fields)
{
if (field.GetType() == typeof(string))
{
field.SetValue(result, xmlMachine.Read(field.Name));
}
else if (field.GetType() == typeof(List<string>))
{
field.SetValue(result, xmlMachine.Reads(field.Name));
}
else
{
//这里我希望递归调用SetFiledsValue<T>(XmlMachine xmlMachine) 这个方法,关键这个<T> 的T怎么传呀,忘大神们指教
}
}
return result;
}
慕后森