C# - parsing json formatted data into nested hashtables

后端 未结 4 652
日久生厌
日久生厌 2020-12-17 04:09

I’m trying to work with some json formatted data in C#, but, I’m having some problems determining the proper way to approach the problem. My issue is that the json formatte

4条回答
  •  再見小時候
    2020-12-17 04:58

    I didn't like the .Net Json parsing...it does some strange things occasionally. I've switched to Json.NET, an open source library. It has a nice JObject object that will do what you need.

提交回复
热议问题