xmlSerializer怎么在C#项目中使用?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。
publicclassEntity { publicEntity() { } publicEntity(stringc,stringf) { name=c; school=f; } publicstringname; publicstringschool; }
使用时声明
List<Entity>entityList=null; XmlSerializerxs=newXmlSerializer(typeof(List<Entity>));
读入
using(StreamReadersr=newStreamReader(configPath)) { entityList=xs.Deserialize(sr)asList<Entity>; }
输出
using(StreamWritersw=File.CreateText(configPath)) { xs.Serialize(sw,entityList); }
对应的xml
<?xmlversion="1.0"encoding="utf-8"?> <ArrayOfEntityxmlns:xsd="http://www.w3.org/2001/XMLSchema"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Entity> <Name>Alice</Name> <School>SJTU</School> </Entity> <Entity> <Name>Cici</Name> <School>CSU</School> </Entity> <Entity> <Name>Zero</Name> <School>HIT</School> </Entity> </ArrayOfEntity>
关于 xmlSerializer怎么在C#项目中使用问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注恰卡编程网行业资讯频道了解更多相关知识。
C#中的WebRequest与WebResponse抽象类、DNS静态类、Ping类实例分析
C++引用如何使用
flutter怎么封装点击菜单工具栏组件checkBox多选版
JavaScript怎么实现淘宝网图片的局部放大功能
flutter怎么封装单选点击菜单工具栏组件
小程序怎么开发调用微信支付及微信回调地址
Python怎么通过变量ID得到变量的值
Python如何实现功能全面的学生管理系统
idea怎么使用jclasslib插件查看字节码
python怎么用xlsxwriter模块处理excel文件
用户名
密码
记住登录状态 忘记密码?
邮箱
确认密码
我已阅读并同意 用户协议