Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
swdev:dotnet:arrays [2011/04/08 11:41]
smayr [Getting Dimensions]
swdev:dotnet:arrays [2011/05/24 15:48] (current)
smayr [Resources]
Line 17: Line 17:
 <code csharp> <code csharp>
 // allocate memory // allocate memory
-int array[][] = new int[2][10];+int array[,] = new int[2][10];
  
 // use array // use array
Line 60: Line 60:
 == Resources == == Resources ==
   * [[http://www.csharp-station.com/Tutorials/Lesson02.aspx|C# Tutorial: Lesson 2: Arrays]]   * [[http://www.csharp-station.com/Tutorials/Lesson02.aspx|C# Tutorial: Lesson 2: Arrays]]
 +  * [[http://msdn.microsoft.com/en-us/library/aa288453(v=vs.71).aspx|MSND: Arrays Tutorial]]