public void LoadPointsData(COMDT_WEAL_POINT_DATA pointsInfo)
 {
     if (pointsInfo != null)
     {
         for (ushort num = 0; num < (ushort)pointsInfo.bWealCnt; num += 1)
         {
             COMDT_WEAL_POINT_DETAIL info = pointsInfo.astWealList[(int)num];
             this.UpdateOnePointData(info);
         }
     }
 }
示例#2
0
 public void LoadPointsData(COMDT_WEAL_POINT_DATA pointsInfo)
 {
     if (pointsInfo != null)
     {
         for (ushort i = 0; i < pointsInfo.bWealCnt; i = (ushort)(i + 1))
         {
             COMDT_WEAL_POINT_DETAIL info = pointsInfo.astWealList[i];
             this.UpdateOnePointData(info);
         }
     }
 }