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

static private MovesToString ( IEnumerable moves ) : string
moves IEnumerable
리턴 string
예제 #1
0
 /// <summary>
 /// Call to send your move orders and complete your turn.
 /// </summary>
 public static void SendMoves(IEnumerable <Move> moves)
 {
     SendString(Move.MovesToString(moves));
 }
예제 #2
0
 /// <summary>
 /// Call to send your move orders and complete your turn.
 /// </summary>
 public static void SendMoves(IEnumerable <Move> moves)
 {
     Console.WriteLine(Move.MovesToString(moves));
 }