using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace study08 { class App { //생성자 public App() { Inventory inventory = new Inventory(5); inventory.AddItem(new Item("장검")); inventory.AddItem(new Item("장검")); //이미 장검이 있습니다. inventory.AddItem(new Item("단검")); int count = inventory.GetItemCount(); Console.WriteLine("count: {0}",..