--- lang: ja-jp breaks: true --- # C# ジェネリック型とその型パラメーターを確認するには 2021-09-17 > ジェネリック型とその型パラメーターを確認するには > https://docs.microsoft.com/ja-jp/dotnet/framework/reflection-and-codedom/how-to-examine-and-instantiate-generic-types-with-reflection#to-examine-a-generic-type-and-its-type-parameters ```csharp= Type d1 = typeof(Dictionary<,>); ``` ###### tags: `C#` `ジェネリック型` `型引数`