我目前有一个 winForms 程序,而且我对编程还很陌生。现在我有一个 Item 类
public class Item
{
public string @Url { get; set; }
public string Name { get; set; }
public double Price { get; set; }
public int Index { get; set; }
public Item(string @url, string name, double price)
{
this.Url = url;
this.Name = name;
this.Price = price;
}
public override string ToString()
{
return this.Name;
}
}
并在整个程序中存储在字典中
Dictionary<int, Item>
如何创建新文件类型 (.buf) 并使其保存字典以便可以打开它?