⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 shoppinglist.cs

📁 XmlSerialization this is only an example of how to use the XmlSerialization library in .net
💻 CS
字号:
using System.Xml.Serialization;
using System.Collections.Generic;

namespace XmlSerialization
{
    [XmlRoot("shoppingList")]
    public class ShoppingList
    {
        private List<ShoppingItem> shoppingItems;

        public ShoppingList()
        {
            shoppingItems = new List<ShoppingItem>();
        }

        [XmlElement("item")]
        public ShoppingItem[] Items
        {
            get
            {
                return shoppingItems.ToArray();
            }
            set
            {
                shoppingItems.Clear();
                shoppingItems.AddRange(value);
            }
        }

        public void AddItem(ShoppingItem item)
        {
            shoppingItems.Add(item);
        }
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -