mehrdimensionale arrays c#
int[,] array = new int[4, 2];
mehrdimensionale arrays c#
int[,] array = new int[4, 2];
c# two dimensional array
// Two-dimensional array.
int[,] array2D = new int[,] { { 1, 2 }, { 3, 4 }, { 5, 6 }, { 7, 8 } };
// The same array with dimensions specified.
int[,] array2Da = new int[4, 2] { { 1, 2 }, { 3, 4 }, { 5, 6 }, { 7, 8 } };
// A similar array with string elements.
string[,] array2Db = new string[3, 2] { { "one", "two" }, { "three", "four" },
{ "five", "six" } };
// Three-dimensional array.
int[, ,] array3D = new int[,,] { { { 1, 2, 3 }, { 4, 5, 6 } },
{ { 7, 8, 9 }, { 10, 11, 12 } } };
// The same array with dimensions specified.
int[, ,] array3Da = new int[2, 2, 3]
{ { { 1, 2, 3 }, { 4, 5, 6 } },{ { 7, 8, 9 }, { 10, 11, 12 } } };
c# mixed multidimensional array
//You can't do that. Instead,
//you should create a class that contains these two properties,
//then you can create an array of that type:
public class MyClass
{
public string ControlName {get;set;}
public bool MyBooleanValue {get;set;}
}
public MyClass[] myValues=new MyClass[numberOfItems];
//use a dictionary if one of the properties is meant to be
//used to perform lookups.
// Added By Barry Cox
multidimensional array c#
// The following are multidimensional arrays
// Two-dimensional array. (4 rows x 2 cols)
int[,] array2D = new int[,] { { 1, 2 }, { 3, 4 }, { 5, 6 }, { 7, 8 } };
// Three-dimensional array. (4 rows x 2 cols)
int[,,] array3D = new int[,,] {
{ { 1, 2, 3, 4 }, { 5, 6, 7, 8 }, { 9, 10, 11, 12 } },
{ { 13, 14, 15, 16 }, { 17, 18, 19, 20 }, { 21, 22, 23, 24 } }
};
int[,,] array3D = new int[2, 3, 4] {
{ { 1, 2, 3, 4 }, { 5, 6, 7, 8 }, { 9, 10, 11, 12 } },
{ { 13, 14, 15, 16 }, { 17, 18, 19, 20 }, { 21, 22, 23, 24 } }
};
// C# also has jagged arrays
// A "multidimensional array" is essentially a matrix occupying one block of memory
// The "jagged array" is an array of arrays
// - with no restriction that the latter arrays need to be of the same dimension/length
// - each of these latter arrays also occupy their own block in memory
int[][] jArray = new int[3][]{
new int[2]{1, 2},
new int[3]{3, 4, 5},
new int[4]{6, 7, 8, 9}
};
jArray[1][2]; //returns 4
// We can change a whole element of array
jArray[1] = new int[3] { 10, 11, 12 };
jArray[1][2]; //returns 11
int[][][] intJaggedArray = new int[2][][]
{
new int[2][]
{
new int[3] { 1, 2 },
new int[2] { 4, 5, 6 }
},
new int[1][]
{
new int[3] { 7, 8, 9, 10 }
}
};
intJaggedArray[0][1][2]; //returns 6
// https://stackoverflow.com/a/4648953/9034699
// https://www.tutorialsteacher.com/csharp/csharp-jagged-array
C# public 2d array
// in namespace, above main form declaration
public class Globals
{
public static string[,] tableArray;
}
//... in main or other method
Globals.tableArray = new string[rowLength,colLength];
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us