char[,] state = new char[3, 3] { {'A', ' ', ' '}, {' ', ' ', ' '}, {' ', ' ', ' '}};// // used like v I want the first column of the first row hereConsole.WriteLine(String.Format(" -> {} ", state))
A