int count = RepaymentCollection.Count;
                int i = 0;
                while(i<count )
                {
                    if (RepaymentCollection[i].CheckResult != "√")
                    {
                        InputRepayment r = new InputRepayment();
                        r = GetCheckedRepayment(RepaymentCollection[i]);
                        RepaymentCollection.RemoveAt(i);
                        RepaymentCollection.Insert(i, r);
                    }
                    i++;
                }
posted on 2012-12-25 17:03  swarb  阅读(116)  评论(0编辑  收藏  举报