2013年12月25日
摘要: /// /// Converts a SOAP string to an object /// /// Object type /// SOAP string /// The object of the specified type public static T SOAPToObject(string SOAP) { if (string.IsNullOrEmpty(SOAP)) { throw new ArgumentException("SOAP can not be null/empty"); } using (MemoryStream Stream = new M 阅读全文
posted @ 2013-12-25 15:49 fery 阅读(309) 评论(0) 推荐(0) 编辑