码迷,mamicode.com
首页 > 编程语言 > 详细

c#数组

时间:2016-11-01 09:43:00      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:element   structure   arrays   ati   declare   style   single   nat   dimens   

class TestArraysClass
{
    static void Main()
    {
        // Declare a single-dimensional array 
        int[] array1 = new int[5];

        // Declare and set array element values
        int[] array2 = new int[] { 1, 3, 5, 7, 9 };

        // Alternative syntax
        int[] array3 = { 1, 2, 3, 4, 5, 6 };

        // Declare a two dimensional array
        int[,] multiDimensionalArray1 = new int[2, 3];

        // Declare and set array element values
        int[,] multiDimensionalArray2 = { { 1, 2, 3 }, { 4, 5, 6 } };

        // Declare a jagged array
        int[][] jaggedArray = new int[6][];

        // Set the values of the first array in the jagged array structure
        jaggedArray[0] = new int[4] { 1, 2, 3, 4 };
    }
}

 

c#数组

标签:element   structure   arrays   ati   declare   style   single   nat   dimens   

原文地址:http://www.cnblogs.com/xbblogs/p/6018240.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!