码迷,mamicode.com
首页 > Windows程序 > 详细

c# JsonReader读取json字符串

时间:2017-05-26 12:00:46      阅读:325      评论:0      收藏:0      [点我收藏+]

标签:tput   result   ring   gre   get   使用   字符串   csharp   targe   

使用JsonReader读Json字符串:
  
 
string jsonText = @"{""input"" : ""value"", ""output"" : ""result""}";
JsonReader reader = new JsonTextReader(new StringReader(jsonText));
 
while (reader.Read())
{
    Console.WriteLine(reader.TokenType + "\t\t" + reader.ValueType + "\t\t" + reader.Value);
}
 

c# JsonReader读取json字符串

标签:tput   result   ring   gre   get   使用   字符串   csharp   targe   

原文地址:http://www.cnblogs.com/lbonet/p/6907577.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!