using Newtonsoft.Json.Linq;
public static JsonSerializer _serializer = new JsonSerializer();
public static void Main()
JObject o = JObject.Parse(@"{
'Name': 'Headlight Fluid',
Console.WriteLine("1. Print the key Value");
Console.WriteLine(o["Manufacturers"].ToString());
Console.WriteLine("--------");
Console.WriteLine("2. Iterate and print by keyname - (Key - Value) ");
if(m.Key == "Manufacturers")
Console.WriteLine(m.ToString());