How to deserialize from JSON file with multiple objects
So I have this JSON file. I want to get the data out of it in C#. { "Server": [ { "Name": "Server1", "AvgTemp": 36, "CurTemp": 50.3, "MaxTemp": 41, "MinTemp": 37 }, { "Name": "Server2", "AvgTemp": 36, "CurTemp": 50.3, "MaxTemp":…