using System;
using Newtonsoft.Json.Linq;
public class Program
{
public static void Main()
string json = @"{
""key"": ""value
over two\\
lines"",
}";
JObject result = JObject.Parse(json);
Console.WriteLine(result["key"]);
}