私はジェネリックの奇妙な振る舞いに出会った。以下は私がテストに使用するコードです。
public static class Program
{
public static void Main()
{
Type listClassType = typeof(List<int>).GetGenericTypeDefinition();
Type listInterfaceType = listClassType.GetInterfaces()[0];
Console.WriteLine(listClassType.GetGenericArguments()[0].DeclaringType);
Console.WriteLine(listInterfaceType.GetGenericArguments()[0].DeclaringType);
}
}
出力:
System.Collections.Generic.List`1[T]
System.Collections.Generic.List`1[T]
ジェネリック型定義を使用しているため、2番目のConsole.WriteLine呼び出しがインターフェイスではなくクラスを表示するのは非常に奇妙であることがわかりました。これは正しい動作ですか?
コンパイラに汎用型推論を実装しようとしています。以下のコードがあるとします。
public static class GenericClass
{
public static void GenericMethod<TMethodParam>(IList<TMethodParam> list) { }
}
そして、私はこのメソッドを次のように呼び出したいと思います。
GenericClass.GenericMethod(new List<int>());
推論の可能性を確認するために、メソッドシグネチャのタイプと渡された引数のタイプを比較する必要があります。しかし、以下のコードはfalseを返します。
typeof(GenericClass).GetMethods()[0].GetParameters()[0].ParameterType == listInterfaceType;
このような比較には、常にType.GetGenericTypeDefinitionを使用する必要がありますか?