数组的创建
[] // 第一种方法 int vec = { 37 , 47 , 23 }; //第二种方法
int[] int [3];
//第三种方法
private string[] faceName;faceName = new string[100];