Невозможно увеличить размер списка
Всем Привет,
У меня есть список. В моем списке есть только 1 запись.Я хочу добавить счетчик инкрементов в список. Если пользователь введет 5 значений, то один и тот же recor будет отображаться 5 раз.
1 Индия
2 Индия
3 Индия
4 Индия
5 Индия
Пример: если значение NdPlettes= 4. мой список будет отображаться 4 раза.
Если значение NdPlettes= 5. мой список будет отображаться 5 раз
теперь я получаю такой результат, как:
5 Индия
5 Индия
5 Индия
5 Индия
5 Индия
Что я уже пробовал:
int index = 1; generateSeqNumber(); foreach (var ProdSelection in ClientImpressionProdSelection) { if (index <= InputProduct.NdPlettes) { ProdSelection.Sequence = Convert.ToInt32(GenResult); ProdSelection.Number = index; ProdSelection.ClientDestinataire = InputProduct.ClientDestinataire; ProdSelection.LieuDeLivraison = InputProduct.LieuDeLivraison; ProdSelection.CodeProduitClient = InputProduct.CodeProduitClient; ProdSelection.CodeCouleurClient = InputProduct.CodeCouleurClient; ProdSelection.CodeFournisseurEMPourClient = InputProduct.CodeFournisseurEMPourClient; ProdSelection.AQP = InputProduct.AQP; ProdSelection.Produit = InputProduct.Produit; ProdSelection.RefFournisseur = InputProduct.RefFournisseur; ProdSelection.NdShipment = InputProduct.NdShipment; ProdSelection.NdLot = InputProduct.NdLot; ProdSelection.Cdate = InputProduct.Cdate; ProdSelection.PoidsNet = InputProduct.PoidsNet; ProdSelection.PoidsBrut = InputProduct.PoidsBrut; ProdSelection.NbrPallet = InputProduct.NdPlettes; ProdSelection.Material = InputProduct.Material; ProdSelection.CodClient = InputProduct.CodClient; ProdSelection.CodPackaging = InputProduct.CodPackaging; ProdSelection.CoefNetBrut = InputProduct.CoefNetBrut; index++; GetClientImpressionProductSel.Add(ProdSelection); }