我需要一种循环遍历每个对象属性的方法,并记录属性名称和值。然而,偶尔,我点击了一个列表对象的属性,整个事情崩溃了。我从各个SO帖子中收集了以下条件,但每次都返回false。想知道如何测试你的方法属性是否是泛型集合类型?
课程定义
public class DtccProducer
{
public string ProducerDateOfBirth { get; set; }
public string ProducerGender { get; set; }
public string TransactionType { get; set; }
public List<BigAddress> Addresses { get; set; }
public List<BigCommunicationItem> Communications { get; set; }
}
方式
private static void ParseProducer(object obj)
{
StringBuilder s = new StringBuilder();
Type objType = obj.GetType();
foreach (PropertyInfo info in objType.GetProperties())
{
string key = info.Name;
Type propType = info.PropertyType;
if (propType.IsGenericType && typeof(ICollection<>).IsAssignableFrom(propType.GetGenericTypeDefinition()))
{
// This condition never passes - always evaluates to false
}
else
{
string value = (string) info.GetValue(obj, null);
_sb.AppendLine(key + ": " + value);
}
}
}
答案 0 :(得分:2)
这是我用来识别日志中列表的代码:
if (!propType.IsPrimitive && !propType.IsEnum && propType != typeof(string) && propType.GetInterfaces().Any(x => x.IsGenericType
&& x.GetGenericTypeDefinition() == typeof(IEnumerable<>)))
编辑:我添加了一些额外的检查来过滤原始类型(int,bool等),枚举和字符串。