Vinod Dua
How to declares a two-dimensional array in C#?
By Vinod Dua in C# on Jun 08 2012
  • Keyur Patel
    Apr, 2013 16

    string[,] strArray= new string[3,3];You can also instantiate it in the same line with array initializer syntax as follows:string[,] strArray = new string[3, 3] {{"a","b","c"},{"d","e","f"}, {"g","h","i"} };For more about the Multidimension array. You can refer following Link. http://msdn.microsoft.com/en-us/library/2yd9wwz4(v=vs.71).aspx

    • 0
  • Keyur Patel
    Apr, 2013 16

    string[,] strArray= new string[3,3];You can also instantiate it in the same line with array initializer syntax as follows:string[,] strArray = new string[3, 3] {{"a","b","c"},{"d","e","f"}, {"g","h","i"} };For more information about the Multidimensional Arrays

    • 0
  • Akshay Patel
    Sep, 2012 2

    int[,] myArray = new int[4,2];

    • 0
  • Akshay Patel
    Sep, 2012 2

    int[,] myArray = new int[4,2];

    • 0
  • Mandar Desai
    Jul, 2012 5

    Two Dimensional Array: These are arrays which represent data in the forms of rows and columns. Int [,]=new int[3,4]; Or Int[,] arr; Arr=new int[2,3]; We can identify each and every cell by using row and column index as following: Int [,] arr=new int[4,5]; Arr[0,0]=5; Arr[0,1]=10; We can use getlength method to find no. of rows and column as following: Arr.getlength(0) for Rows Arr.getlength(1) for columns Class tdarray { Static void main() { Int a=5; Int[,] arr=new int[4,5]; For( int i=0;i

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS