using Newtonsoft.Json.Linq;
using System.Collections.Generic;
public static void Main()
var myFavoriteAnimalsJson = @"
JArray animals = JArray.Parse(myFavoriteAnimalsJson);
Console.WriteLine(animals[0]["Dog"]["cuteness"]);
var dog = animals[0].SelectToken("Dog");
Console.WriteLine(dog["cuteness"]);