摘要:
一.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-- 阅读全文