public enum Piece {empty, white, black}
public static Piece[,] board;
public static void Main()
board[4,5] = Piece.black;
board[4,6] = Piece.black;
board[3,3] = Piece.white;
for (int x=0; x<8; x++) {
for (int y=0; y<8; y++) {
display += PieceToChar ( board[x,y] );
public static char PieceToChar ( Piece piece ) {
if (piece == Piece.white) return 'W';
if (piece == Piece.black) return 'B';