Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道哪个 .net 程序集实现了数组关键字 []
例如:
int[] arr1 = new int[] { 1, 2, 3 }; string[] arrString = new string[6];
mscorlib
基本类型是Array类。
Array