예제 #1
0
파일: CBoard.cs 프로젝트: T-MOOR-N/Chess
 public CPiece this[string coordinate]
 {
     get { return(this[CSquare.Parse(coordinate)]); }
     set { this[CSquare.Parse(coordinate)] = value; }
 }