Chess.Domain.Board.EmptySquare C# (CSharp) 메소드

EmptySquare() 개인적인 정적인 메소드

private static EmptySquare ( int column, int row ) : Square
column int
row int
리턴 Chess.Data.Entities.Square
        private static Square EmptySquare(int column, int row)
        {
            return NewSquare(column, row, null);
        }