111,120
社区成员
发帖
与我相关
我的任务
分享 //开始寻找
public void Track()
{
FootPrint foot = new FootPrint(0, 0);
do
{
foot = this.GetNext(foot);
road.Add(foot);
Thread.Sleep(1000);
//if (road.Count > 5)
//{
// break;
//}
} while (!IsSuccess());
}