日期:2014-05-16 浏览次数:20789 次
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.SqlClient;
namespace ConsoleApplication1
{
class MainClass
{
static void Main()
{
int[] lengthsArray = new int[2] { 3, 5 };
int[] boundsArray = new int[2] { 2, 3 };
System.Array.CreateInstance(typeof(String), lengthsArray, boundsArray);
}
}
}