C#检查类类型

时间:2013-09-12 11:08:51

标签: .net c#-4.0 system.reflection

我有一个用于修剪对象的通用通用方法

public static T GetTrimmedObject<T>(T model, bool isWantToEncodeStrings = false) where T : class
    {
        try
        {
            List<PropertyInfo> propertiesInfoCollection = model.GetType().GetProperties().ToList();
            foreach (PropertyInfo item in propertiesInfoCollection)
            {
                Type type = item.PropertyType;
                if (type == typeof(String))
                {
                    dynamic value = item.GetValue(model, null);
                    if (!String.IsNullOrWhiteSpace(value))
                    {
                        item.SetValue(model, isWantToEncodeStrings ? HttpUtility.HtmlEncode(value.Trim()) : value.Trim(), null);
                    }
                }
            }
            return model;
        }
        catch (Exception ex)
        {
            HandleAndLogException(ex, typeof(GlobalUtil));
            return model;
        }
    }

但是当属性是类的类型时,我想要递归调用,因此嵌套的类属性也被清除。 所以我的问题是如何检查相同的?

1 个答案:

答案 0 :(得分:0)

您可以检查Type.IsPrimitive是否属于类类型,并以递归方式调用给定类型的函数。