public void AddBoardPiece(BoardPiece piece, int x, int y) { ReversiBoard[x, y] = piece; }
public Board(int width, int height) { Width = width; Height = height; ReversiBoard = new BoardPiece[height, width]; }