本文介绍了在后面的代码中反序列化JSON字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否还有其他方法可以反序列化JSON字符串,而不是使用Newtonsoft库?我有一个类似
Is there is any other way deserialize JSON string,rather than using the Newtonsoft library? I've a string like
string json = "{status : '1',message : '<tr><th>Date</th><th>Description</th><th>Reference</th> <th>Code</th><th>Dept Code</th><th>Debit</th><th>Credit</th></tr>'}";
如果我想访问文件后面代码中的message属性,该怎么办?
if i want to access the message property in code behind file, how can i do that?
推荐答案
-
创建课程
Create class
public class TestM
{
public string status { get; set; }
public string message { get; set; }
}
比在您的代码中使用
Than use this in your code
JavaScriptSerializer ser = new JavaScriptSerializer();
TestM t = ser.Deserialize<TestM>("{status : '1',message : '<tr><th>Date</th><th>Description</th><th>Reference</th> <th>Code</th><th>Dept Code</th><th>Debit</th><th>Credit</th></tr>'}");
这篇关于在后面的代码中反序列化JSON字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!