MovesToString() static private method

static private MovesToString ( IEnumerable moves ) : string
moves IEnumerable
return string
Ejemplo n.º 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));
 }
Ejemplo n.º 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));
 }