Te damos la bienvenida a nuestro sitio, en este sitio vas a hallar la resolución a lo que estabas buscando.
Ejemplo 1: c # bidimensional array
// Two-dimensional array.int[,] array2D =newint[,]1,2,3,4,5,6,7,8;// The same array with dimensions specified.int[,] array2Da =newint[4,2]1,2,3,4,5,6,7,8;// A similar array with string elements.string[,] array2Db =newstring[3,2]"one","two","three","four","five","six";// Three-dimensional array.int[,,] array3D =newint[,,]1,2,3,4,5,6,7,8,9,10,11,12;// The same array with dimensions specified.int[,,] array3Da =newint[2,2,3]1,2,3,4,5,6,7,8,9,10,11,12;
Ejemplo 2: C # public 2d array
// in namespace, above main form declarationpublicclassGlobalspublicstaticstring[,] tableArray;//... in main or other method
Globals.tableArray =newstring[rowLength,colLength];
Comentarios y valoraciones
Eres capaz de respaldar nuestra función dejando un comentario y dejando una valoración te lo agradecemos.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)