📜  c# 获取泛型列表的列表对象类型 - C# 代码示例

📅  最后修改于: 2022-03-11 14:49:11.289000             🧑  作者: Mango

代码示例1
Type type = pi.PropertyType;
if(type.IsGenericType && type.GetGenericTypeDefinition()
        == typeof(List<>))
{
    Type itemType = type.GetGenericArguments()[0]; // use this...
}