数组和集合 / 数组

using System;

int count = 15;
int[] arInt = new int[count];
arInt[0] = 1;

Console.WriteLine(arInt[0]);