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