实例属性的文档Type.IsConstructedGenericType
不明确或具有误导性。
我尝试了以下代码来查找此属性和相关属性的实际行为:
// create list of types to use later in a Dictionary<,>
var li = new List<Type>();
// two concrete types:
li.Add(typeof(int));
li.Add(typeof(string));
// the two type parameters from Dictionary<,>
li.Add(typeof(Dictionary<,>).GetGenericArguments()[0]);
li.Add(typeof(Dictionary<,>).GetGenericArguments()[1]);
// two unrelated type parameters
li.Add(typeof(Func<,,,>).GetGenericArguments()[1]);
li.Add(typeof(EventHandler<>).GetGenericArguments()[0]);
// run through all possibilities
foreach (var first in li)
{
foreach (var second in li)
{
var t = typeof(Dictionary<,>).MakeGenericType(first, second);
Console.WriteLine(t);
Console.WriteLine(t.IsGenericTypeDefinition);
Console.WriteLine(t.IsConstructedGenericType);
Console.WriteLine(t.ContainsGenericParameters);
}
}
该代码通过由 36 种类型组成的笛卡尔积运行t
。
结果:对于 32 种类型(除 、 、 、 4 种组合之外的所有类型Dictionary<int, int>
)Dictionary<int, string>
,Dictionary<string, int>
的Dictionary<string, string>
值为ContainsGenericParameters
真。
对于 35 种类型,IsGenericTypeDefinition
为假而IsConstructedGenericType
为真。对于最后一种类型,即(不出所料):
System.Collections.Generic.Dictionary`2[TKey,TValue]
是IsGenericTypeDefinition
真的,IsConstructedGenericType
也是假的。
我是否可以得出结论,对于泛型类型, 的值IsConstructedGenericType
始终是 的相反(否定)IsGenericTypeDefinition
?
(文档似乎声称这IsConstructedGenericType
与 相反ContainsGenericParameters
,但我们清楚地展示了很多反例。)