how t retrieve only "values" from dictionary array
hi,
I am passing an array as a parameter to my Action method in controller like
public ActionResult SearchDetails( string val)
{
var json = val;
Dictionary<string,int>[] obj = JsonConvert.DeserializeObject<string,>[]>(json);
}
my object contains the values in the format{id:1}{id:2} I want to
retrieve only all "values"(no need to retrieve "Key" value) from my
dictionary object using Linq query
how can i retrieve those values