前端之家收集整理的这篇文章主要介绍了
c# – 定义了int []和string []类的位置?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
int a = 0;
int[] b = new int[3];
Console.WriteLine( a.GetType() );
Console.WriteLine( b.GetType() );
a的类型是System.Int32,它是一个struct.
b的类型是int [].
我可以在Visual Studio中看到Int32的定义. int []的定义在哪里?
对于给定类型T,通过组合预定义类型T []. T [] []等也是如此
原文链接:https://www.f2er.com/csharp/98490.html