我被要求创建一个迷你和基本的购物篮,代码正在运行,但最近我创建的用于搜索数组的 for 循环正在跳过循环内的所有代码。我提供了以下代码:
for (int i = 0; i < OrderItems.Count; i++)
{
//if a match is found it will add to the to the current quantity
if (OrderItems[i].ProductName == productName)
OrderItems[i].AddItem(latestValue, quantity);
//If no match was found in the list it will get added
else
OrderItems.Add(new OrderItem(productName, latestValue, quantity));
}
我是新的相当新的c#,我可能错过了一些愚蠢的事情感谢您提供的任何帮助