以下のようなリストがあります。
List<Product> productList = new List<Product>();
Product クラスは次のようになります。
public class Product
{
public int ID { get; set; }
public string ProductName { get; set; }
public int Quantity { get; set; }
}
ユーザーが ID で識別される重複したリスト エントリを挿入した場合、次のようにマージするにはどうすればよいでしょうか
Product Name Qty
Coke 2
Pepsi 7