反射IsGenericType

var propertyType = propertyInfo.PropertyType;

if (propertyType.IsGenericType &&
propertyType.GetGenericTypeDefinition() == typeof(Nullable<>))
{
propertyType = propertyType.GetGenericArguments()[0];
} model.ModelProperties.Add(new KeyValuePair<Type, string>
(propertyType.Name,propertyInfo.Name));
上一篇:Spring框架学习(一)


下一篇:spring框架学习(三)