You can use the overload of JObject.ToString()
which takes Formatting
as parameter:
JObject obj = JObject.FromObject(new
{
typ = "photos"
});
return obj.ToString(Formatting.None);
You can use the overload of JObject.ToString()
which takes Formatting
as parameter:
JObject obj = JObject.FromObject(new
{
typ = "photos"
});
return obj.ToString(Formatting.None);