void function(Type type){Type arrayType = type.MakeArrayType();}
static void Main(string[] args){ foo(typeof(int));} static void foo(Type type){ if (type == typeof(int)){ int[] @int = new int[10]; } }