How to serialize a JObject without the formatting?

后端 未结 3 1011
灰色年华
灰色年华 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:46

    You can also do the following;

    string json = myJObject.ToString(Newtonsoft.Json.Formatting.None);
    

提交回复
热议问题