我正在研究一个生成属性树的类,但是我遇到了一些包含数组的数组和原始数据类型的问题。
在示例中,字符串具有Chars和Length属性 如何在不使用Length的情况下使用GetValue访问Chars? 我不想使用Length属性的要点是,因为我不知道是否有任何包含Length属性的类
public class Util
{
public static IDictionary<String,Object> PrintProperties(Type type, Object obj)
{
PropertyInfo[] properties = type.GetProperties();
IDictionary<String, Object> propertyDict = new Dictionary<String,Object>();
if (properties.Length > 1)
{
for (int i = 0; i < properties.Length; i++)
{
Console.WriteLine(properties[i].Name);
if (properties[i].PropertyType.GetProperties().Length > 1)
{
Object value = obj.GetType().GetProperty(properties[i].Name).GetValue(obj, null);
if (value == null)
{
propertyDict[properties[i].Name] = null;
}
else
{
propertyDict[properties[i].Name] = Util.PrintProperties(properties[i].PropertyType, obj.GetType().GetProperty(properties[i].Name).GetValue(obj, null));
}
}
else
{
try
{
// MY PROBLEM
Console.WriteLine("\t" + properties[i].GetValue(obj, null));
propertyDict[properties[i].Name] = properties[i].GetValue(obj, null);
}
catch (TargetParameterCountException e)
{
// Array
}
catch (Exception e)
{
}
}
}
}
return propertyDict;
}
}
答案 0 :(得分:1)
您确定Get Value在列表中是肯定的吗?那么长度也应该在那里。