In C#, a two-dimensional array is declared using the syntax int[,] myarray - the comma inside the brackets indicates a multidimensional array. Option B (int[][]) declares a jagged array (array of arrays), which is different from a true 2D array. Option C is invalid syntax.