webservice在工作中用到的很多,基本都是以XML格式问通讯内容,其中最关键的就是XML串的序列化及反序列化. XML的运用中有两种信息传递,一种为XML的请求信息,另一种为返回信息,要运用XML,首先要为这两种返回信息新建实体类. using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Xml.Serialization; namespace Tes…