• Linq to xml:XAttribute对象


                XElement c = new XElement("Customers",
        new XElement("Customer",
            new XElement("Name", "John Doe"),
            new XElement("PhoneNumbers",
                new XElement("Phone",
                    new XAttribute("type", "home"),
                    "555-555-5555"),
                new XElement("Phone",
                    new XAttribute("type", "work"),
                    "666-666-6666")
            )
        )
    );
                Console.WriteLine(c);
    关于作者: 王昕(QQ:475660) 在广州工作生活30余年。十多年开发经验,在Java、即时通讯、NoSQL、BPM、大数据等领域较有经验。
    目前维护的开源产品:https://gitee.com/475660
  • 相关阅读:
    request内置对象
    JSP页面、包含
    HTTP协议
    html简介
    数据访问层工具类
    数据运算
    可变于不可变对象分类
    有序 无序 的区别
    字符串方法
    day01_final
  • 原文地址:https://www.cnblogs.com/starcrm/p/1362737.html
Copyright © 2020-2023  润新知