C# – Deserialize array of JSON objects into Dictionary
{ "TestObjects": [ {"the": "goal"}, {"is": "to"}, {"deserialize": "this"}, {"simple": "array"}, {"of": "objects"}, {"into": "a"}, {"C#": "Dictionary"} ] } Using .NET System.Text.Json. Seeking methodology to deserialize an array of objects where each object has two strings, as shown above, into…