C# xmlSerializer简单用法示例

时间:2021-05-19

本文实例讲述了C# xmlSerializer简单用法。分享给大家供大家参考,具体如下:

先上实体类

public class Entity{ public Entity() { } public Entity(string c, string f) { name = c; school = f; } public string name; public string school;}

使用时声明

List<Entity> entityList=null;XmlSerializer xs = new XmlSerializer(typeof(List<Entity>));

读入

using (StreamReader sr = new StreamReader(configPath)){ entityList = xs.Deserialize(sr) as List<Entity>;}

输出

using (StreamWriter sw = File.CreateText(configPath)){ xs.Serialize(sw, entityList);}

对应的xml

<?xml version="1.0" encoding="utf-8"?><ArrayOfEntity xmlns:xsd="http://press

XML代码在线格式化美化工具:
http://tools.jb51.net/code/xmlcodeformat

更多关于C#相关内容感兴趣的读者可查看本站专题:《C#中XML文件操作技巧汇总》、《C#常见控件用法教程》、《C#程序设计之线程使用技巧总结》、《WinForm控件用法总结》、《C#数据结构与算法教程》、《C#数组操作技巧总结》及《C#面向对象程序设计入门教程》

希望本文所述对大家C#程序设计有所帮助。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章