I have a list of <item> of the following
public class Item { public string Link { get; set; } public string Title { get; set; } public string Content { get; set; } public DateTime PublishDate { get; set; } public FeedType FeedType { get; set; } public Item() { Link = ""; Title = ""; Content = ""; PublishDate = DateTime.Today; FeedType = FeedType.RSS; } }
This is just a parsed RSS feed, now I want to be able to request a list of <item> pull items only using PublishDate today?
However, I'm a little lost ... Can someone shed some light, please?
source share