How to serialize a JObject without the formatting?

后端 未结 3 1044
灰色年华
灰色年华 2020-12-24 04:01

I have a JObject (I\'m using Json.Net) that I constructed with LINQ to JSON (also provided by the same library). When I call the ToString() method

3条回答
  •  感动是毒
    2020-12-24 04:48

    you can use JsonConvert.SerializeObject()

    JsonConvert.SerializeObject(myObject) // myObject is returned by JObject.Parse() method
    

    JsonConvert.SerializeObject()

    JObject.Parse()

提交回复
热议问题