摘要: public static class XmlHelper { private static byte[] XmlSerializeInternal(object o, Encoding encoding) { if( o == null ) throw new ArgumentNullException("o"); if( encoding == null ) throw new ArgumentNullException("encoding"); XmlSerializer ser = new XmlSerializer(o.GetType()); 阅读全文
posted @ 2011-12-31 09:06 darjuan 阅读(193) 评论(0) 推荐(0) 编辑