Exemple #1
0
 public static string SendRequest(string map, string moves)
 {
     var postForm = new PostForm();
     postForm.AddParam("mapfile", map);
     postForm.AddParam("route", moves);
     return SendRequest(postForm);
 }