摘要: XmlSerializer是对xml进行序列化操作的对象。写了一个Order的序列化方法供留念。序列化针对有get,set的属性;属性必须是public方式;对象顺序和序列化的顺序一致。对象定义using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace Artech.XmlSerializerDemos{ public class Order { private double _totalPrice; private Guid _i... 阅读全文
posted @ 2014-02-24 21:53 chinaagan 阅读(522) 评论(0) 推荐(0) 编辑