I\'m having an issue storing this json string to a variable. It\'s gotta be something stupid I am missing here
private string someJson = @\"{ \"ErrorMessage
Simple Approach is to copy the JSON to a .json file and read that file in the code
string jsonData = string.Empty; jsonData = File.ReadAllText(@"\UISettings.json");