int a = 0; int[] b = new int[3]; Console.WriteLine( a.GetType() ); Console.WriteLine( b.GetType() );
的类型一个是System.Int32它是一个结构.b的类型是int[].
System.Int32
int[]
我可以Int32在Visual Studio中看到它的定义.int[]定位的定义在哪里?
Int32
c# arrays string int
arrays ×1
c# ×1
int ×1
string ×1