Hi,
I'm trying to deseralize some json into a collection (list), but I'm not sure which method will return a list of objects, or do I have to loop through something and copy it to my own list?
Can anyone tell me the syntax or method I should use for this.
I've created my object with some properties, so it's ready to be used to hold the data. (title,url,description)
I've tried this, but it doesn't seem quite right
List<newsItem> test = (List<newsItem>)JsonConvert.DeserializeObject(Fulltext);