我遇到问题"解码"信息的XElement信息,其值为byte() 我们来考虑以下代码:
Dim c = <test><value><%= System.Text.Encoding.UTF8.GetBytes("this is a test") %></value></test>
当我拨打c.ToString
时,通话会返回以下数据:
<test>
<value>11610410511532105115329732116101115116</value>
</test>
现在,我怎样才能解码&#34;值元素样本为&#34;这是一个测试&#34;再次?
提前谢谢。