Array of type T
指定されたタイプを取得するにはどうすればよいT
ですか?
以下の LinqPad に適したスニペット:
void Main()
{
Type t = typeof(string);
Type tArray = GetArrayType(t);
tArray.Dump(); // System.String[]
}
Type GetArrayType(Type t)
{
////this is cheating !!
//return typeof(string[]);
}