using Newtonsoft.Json.Linq;
public static void Main()
JObject o1 = JObject.Parse(File.ReadAllText(@"output.json"));
var prop = o1.Property("to_Description");
prop.Value = prop.Value.Children<JObject>().FirstOrDefault();
File.WriteAllText(@"output.json", o1.ToString());
public static string ReadAllText(string filename)
""ProductDescription"": ""Product 1""
public static void WriteAllText(string filename, string contents)
Console.WriteLine(contents);