MovesToString() static private method

static private MovesToString ( IEnumerable moves ) : string
moves IEnumerable
return string
コード例 #1
0
ファイル: HaliteHelper.cs プロジェクト: aaronasmith/halitebot
 /// <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));
 }