所以最近我一直在使用这个方法来返回一个字符串:
string uri = "http://localhost:8000/Service/Student";
XDocument xDoc = XDocument.Load(uri);
var studentcollection = xDoc.Descendants("Student")
.Select(n => new
{
FirstName = n.Element("FirstName").Value,
})
.ToList();
它工作正常,但如果 web 服务中的一个值是 byte[],这个方法会返回那个值吗?如果没有,您将如何组合该方法(因为我习惯了它)并返回一个字节 []?