Difference between Type.IsGenericTypeDefinition and Type.ContainsGenericParameters

前端 未结 3 1229
梦毁少年i
梦毁少年i 2020-12-17 09:05

The System.Type type contains the properties IsGenericTypeDefinition and ContainsGenericParameters. After reading the MSDN documentation I conclude that both pr

3条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-17 09:54

    ContainsGenericParameters is a recursive version of IsGenericTypeDefinition.

    typeof(List>).IsGenericTypeDefinition is false.

提交回复
热议问题