int[] stat = { 1, 2 };
int[] end = { 1, 2 };
Array array1 = Array.CreateInstance(typeof(Preson), stat, end);
array1.SetValue(new Preson("a"), 1, 2);
这段代码什么意思 求高手解释下。。。
/*创建多维数组*/ Array array1 = Array.CreateInstance(typeof(Person),//要创建二维Person数组的类型 stat,//创建的二维Person数组的每个维度的大小 end //每个维度的下限 ); //赋值 array1.SetValue(new Preson("a"), 1, 2);
维度的大小和每个维度的下限 是怎么算的呢??
@唐@: 如下:维度的大小 Rank,GetLowerBound 下限,我轻轻地来过,不多说一个字
@Halower: 好吧,还是有点不理解,我自己百度下!!!谢谢
意思:
Creates a multidimensional Array of the specified Type and dimension lengths, with the specified lower bounds.
详见:
Array.CreateInstance Method (Type, Int32[], Int32[])