在C#中,有以下几种定义数组的方式:
int[] numbers = { 1, 2, 3, 4, 5 };
int[] numbers = new int[5];
int[] numbers = Array.CreateInstance(typeof(int), 5) as int[];