摘要: 一.Ajax// 重複項目削除 for (int i = 0; i < recipeList.Count; i++) { for (int j = i + 1; j < recipeList.Count; j++) { if (recipeList[i].materialName == recipeList[j].materialName && recipeList[i].materialVolume == recipeList[j].materialVolume) { recipeList[i].num++; recipeList.RemoveAt(j); j-- 阅读全文
posted @ 2013-01-25 14:15 小水阿哥 阅读(128) 评论(0) 推荐(0) 编辑