WP7 Isolated Storage详解(6)-通过XmlWriter读写XML文件
首先创建一个Windows Phone 7项目,然后在MainPage.xaml.cs(或其他页面文件)中引入命名空间:
using System.Xml;
using System.IO.IsolatedStorage;
using System.IO;
使用XmlWriter 保存XML文件到隔离存储空间
示例中创建了一个名为People2.xml的XML文件并写入数据。
using (Iso
http://www.cyqdata.cn/cnblogs/article-detail-38232