小编use*_*831的帖子

int []和string []类在哪里定义?

int a = 0;
int[] b = new int[3];

Console.WriteLine( a.GetType() );
Console.WriteLine( b.GetType() );
Run Code Online (Sandbox Code Playgroud)

的类型一个System.Int32它是一个结构.b的类型是int[].

我可以Int32在Visual Studio中看到它的定义.int[]定位的定义在哪里?

c# arrays string int

6
推荐指数
1
解决办法
135
查看次数

标签 统计

arrays ×1

c# ×1

int ×1

string ×1