C# 공부 개인 과제 완료 (게임 저장기능 제외)
using System; using System.Net.Security; using System.Runtime.InteropServices; class Program { class Item { public int Id; public string Name; public string Text; public string Effect; public string type; public int Price; public bool isEquip; public bool isBuy; public Item(int id, string name, string text, string effect, int price, bool equip, bool isbuy, string type) { Id = id; Name = name; Te..