Is there a way to convert a dynamic object into an IEnumerable Type to filter the collection using a property.
dynamic data = JsonConvert.DeserializeObject(response.Content);
I need to access something like this
var a = data.Where(p => p.verified == true)
Any ideas?
c # linq
Bharani Sep 11 '13 at 7:20 2013-09-11 07:20
source share