using System;
namespace PerformanceLibrary
{
public class ArrayHolder { int[][] jaggedArray = { new int[] {1,2,3,4},
new int[] {5,6,7},
new int[] {8},
new int[] {9}
};
int [,] multiDimArray = {{1,2,3,4},
{5,6,7,0},
{8,0,0,0},
{9,0,0,0}
};
}
}
交错数组
最新推荐文章于 2025-03-31 16:42:27 发布