About Me

My photo
Web application developer with over 2+yrs exp.Has worked on Asp.net mvc,C#,jquery,core java.

Friday, November 26, 2010

Mullti dimension array C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace DepartmentStore3
{
public class Program
{
static void Main(string[] args)
{
var x = new int[2, 3, 5]
{
{
{1,2,3,4,5},
{6,7,8,9,10},
{10,11,12,13,14}
},
{
{15,16,17,18,19},
{20,21,22,23,24},
{25,26,27,28,29}
}
};

for (int i = 0; i < 2; i++)
{
for (int j = 0; j < 3; j++)
{
for (int k = 0; k <= 4; k++)
{
Console.Write(x[i,j,k]);
}
Console.WriteLine();
}
}
Console.ReadLine();
}
}
}

No comments: