I want to retrieve the values from a Json array in my c# controller. Here's my json array :
{
name : "Name 1",
description : "Description 1",
count : 6
}
How i can retrieve each attribute in my c# controller ? i know how to do it if i deal with Objects but this json is not from a Object.
public IList[] getList(IList[] myList)
{
// How to get the value of the name and the description here ?
}