public void Clear() { for (int x = 0; x < COLS; x++) { for (int y = 0; y < ROWS; y++) { SetChar(0, x, y); } } display.Clear(); }