我目前正在研究一个给定根对象链接的类,并获取该类指向的所有内容,然后创建一个打印输出,以便可以对其进行过滤,并搜索以查找诸如空指针之类的内容,以及引用同一个对象的多个事物。
我已经能够通过使用 LINQ 和反射来完成大部分工作,除了能够查看列表或字典的元素。
使用反射我可以得到它typeof(List<"someClass">)
,或者 typeof(Dictionary<"someOtherClass">)。这件事听起来可能微不足道(因为应该知道列表包含的类型),但在当前基准程序的许多地方,有任意数量的列表和字典,它们可能包含程序集中的几乎任何类对象。
问题是:我将如何从存储的 FieldInfo 中进行测试,以发现它具有这些 Collections.Generic 之一的类型,然后使用反射获取集合的元素,以便我可以获得元素的 FieldInfo ?
编辑代码
// behave is a pointer to a System.object
// infoList is a List<fieldInfo> that belong to behave
string DisplayFields(){
string _str = "";
List<FieldInfo> _newList = infoList;
if(_newList != null && _newList.count > 0){
foreach(FieldInfo info in _newList){
if(info.FieldType.ToString().Contains(".List")){
_str += "\t" + info.Name;
_str += ".typeof(" + info.FieldType + "): ";
_str += ((info.GetValue(behave)!=null)?info.GetValue(behave):"null");
_str += "\n";
// this is where the work on List should happen
}else if(info.FieldType.ToString().Contains(".Dictionary")){
_str += "\t" + info.Name;
_str += ".typeof(" + info.FieldType + "): ";
_str += ((info.GetValue(behave)!=null)?info.GetValue(behave):"null");
_str += "\n";
// this is where the work on Dictionary should happen
}else if(info.FieldType.ToString().Contains("String")){
_str += "\t" + info.Name;
_str += ".typeof(" + info.FieldType + "): ";
_str += ((info.GetValue(behave)!=null)?info.GetValue(behave):"null");
_str += "\n";
}else{
_str += "\t" + info.Name;
_str += ".typeof(" + info.FieldType + "): ";
_str += ((info.GetValue(behave)!=null)?info.GetValue(behave):"null");
_str += "\n";
}
}
}
return _str;
}