XDocument xd = new XDocument(
new XDeclaration("1.0", "UTF-8", "yes"),
new XElement("Command",
new XAttribute("name", "LOGIN_REQ"),
new XAttribute("sn", "1"),
new XAttribute("version", "1.0.0"),
new XElement("UserID", lg.userID),
new XElement("UserPwd", Convert.ToBase64String(Encoding.ASCII.GetBytes(lg.userPwd)))
));
return xd.ToString();
生成的xml 最后转换string
格式
我希望的是
中间不要那个回车还是换行符!
添加回答
举报
0/150
提交
取消