如标题!!

解决方案 »

  1.   

    using System.Collections;ArrayList A = new ArrayList();
    ArrayList B = new ArrayList();
    A.Add(B);
      

  2.   

    string[] weekDays = new string[]
                   {"Sun","Sat","Mon","Tue","Wed","Thu","Fri"};
    string[] array_test=weekDays;
      

  3.   

    都错了吧,应当int [] a = new int[]{1,2,3,};
    int[][] b = new int[][]{a};或者int[] a = new int[] { 1, 2, 3, };
    int[][] b = new int[3][];
    b[0] = a;
      

  4.   

    就是想写成int[]s={{1,2,3},{2,3,4}}
    s是一维数组
      

  5.   

    int [] a = new int[]{1,2,3,};
    int[][] b = new int[][]{a};或者int[] a = new int[] { 1, 2, 3, };
    int[][] b = new int[3][];
    b[0] = a;