using Newtonsoft.Json.Linq;
namespace JsonParsingExample
public static void Main(string[] args)
""test_area_id"": ""ARV TEST-BE"",
""description"": ""TEST RESERVE AISLES AZ TO BE"",
""reserve_loc_num"": null,
""test_capture_time"": ""2021-11-11T18:52:13.000Z"",
""test_integration_key"": ""6181234DD000004A3"",
""test_operation_type"": 1,
""test_table_name"": ""test_area""
JObject jsonObject = JObject.Parse(json);
int testOperationType = (int)jsonObject["test_area"][0]["test_operation_type"];
Console.WriteLine("test_operation_type: " + testOperationType);