转载:http://www.cnblogs.com/kevinGao/archive/2011/12/09/2671025.html
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Threading;
using System.IO;
using Sys ...……
一、一维:
int numbers = new int{1,2,3,4,5,6}; //不定长
int numbers = new int{1,2,3};//定长
二、多维
int numbers = new int{{1,2,3},{1,2,3}}; //不定长
int numbers = new int{{1,2},{1,2}}; // ...……