目前,在xml 应用编程领域比较流行的开发模型是W3C 提供的DOM(文档对象模型),在.net Framework 通过命名空间 System.Xml 对该技术提供了支持.随着Linq to XMl 的诞生, .net 3.5 之后,我们可以使用Linq to sql 操作XMl .以下是通过两种方式创建相同结构的xml文件. using System; using System.Collections.Generic; using System.Linq; using System.Text…