I have a JSON object that's a string array that looks like this. It's in a variable called "researchTerms":
[{"1":"ifn","2":7,"3":1.81818181818182},{"1":"macrophages","2":5,"3":1.2987012987013},{"1":"n =","2":5,"3":1.2987012987013},{"1":"p <","2":5,"3":1.2987012987013},{"1":"technique","2":5,"3":1.2987012987013},{"1":"cells","2":4,"3":1.03896103896104}]
How can I deserialize this in C# using Newtonsoft to an array of ResearchTerms where property "1" is Term, property "2" is Count, and property "3" is Score?:
public class ResearchTerm
{
public string Term { get; set; }
public int Count { get; set; }
public long Score { get; set; }
}