我想这样做:
foreach(Type t in Aplicables)
{
filename = Path.Combine(dataDir, t.Name + "s.txt");
tempJson = JsonConvert.SerializeObject(DataRef<t>.DataList.ToArray());
System.IO.File.WriteAllText(filename, tempJson);
}
但我不能。
我知道它与编译有关。就像编译器需要明确告知在运行时之前将使用什么类型。没关系。但我更喜欢在循环中执行此操作,而不必为“Aplicables”的每个成员手动输入它。
有办法吗?
顺便说一句
public struct DataRef<T>
{
public int RefNum;
public static List<T> DataList = new List<T>();
public T value
{
get
{
return DataList[RefNum];
}
}
}
答案 0 :(得分:0)
你需要做这样的事情:
foreach (Type t in Aplicables)
{
filename = Path.Combine(dataDir, t.Name + "s.txt");
var prop = typeof(DataRef<>).MakeGenericType(t).GetProperty("DataList");
var dataList = prop.GetValue(null) as //List<int> or whatever your dataList is;
tempJson = JsonConvert.SerializeObject(dataList.ToArray());
System.IO.File.WriteAllText(filename, tempJson);
}