C#学习笔记—数组的创建

一位数组: int [] c = new int [12];

二维数组: int [,] d = new int [1, 2];

原文地址:https://www.cnblogs.com/johnpher/p/2733766.html