我正在处理大量FieldInfo信息,并且想为某些类型的数据添加异常以进行不同处理(以生成整洁的输出字符串),但是我找不到将对象转换为List的方法,因此我可以从中得到计数。
我的代码:
string str = "";
string value = "";
foreach (FieldInfo fieldInfo in fieldInfos)
{
if (fieldInfo.Name == "Sprite" || fieldInfo.Name == "Background")
{
value = "Unreadable";
}
else if (fieldInfo.GetValue(type) == null)
{
value = "Null";
}
else
{
switch (fieldInfo.GetValue(type).GetType().Name)
{
default:
value = fieldInfo.GetValue(type).ToString();
break;
case "Color":
value = ((Color)fieldInfo.GetValue(type)).Name;
break;
case "List`1":
value = (((System.Collections.Generic.List<>)fieldInfo.GetValue(type)).Count - 1).ToString();
break;
}
}
str += " " + fieldInfo.Name + ": " + value + Environment.NewLine;
}
return str;
最佳答案
将其强制转换为非通用ICollection
:
(((System.Collections.ICollection)fieldInfo.GetValue(type)).Count - 1).ToString();
它将使您可以访问
Count
属性。