谁叫你买2XXX的手机.....像我这个5XX的手机就好用了....

解决方案 »

  1.   


    HandMobileCollection handMobiles = ChinaMobile.getAllHandMobiles();
    foreach(HandMobile handMobile in handMobiles)
    {
       if(handMobile.name == yourName)
       {
          Location location = GPRS.定位(handMobile);
          ChinaMobile.Call(110, location);
          China110.go(location);
          ThiefCollection thieves = China110.catchThieves();
          if(thives.count == 0)
          {
              MessageBox.show("Sorry!We'll be better Next time!");
              break;
          }
          Collection objects = China110.getObjectFromThieves(thieves);      
          foreach(Object obj in objects)
          {
             if((obj as HandCall) != null && (obj as HandCall).getInfo().equals(handMobile))
             {
                 China110.giveBack(obj,you);
                 MessageBox.show("Congratulations!Your HandCall is Back~~");
                 break;
             }
          }
          break;
       }
    }