I'm writing my own RSS app in Csharp, and I'm wondering what would be a good method for seeing previously fetched RSS items (so it only fetches the new ones)? Currently, my app just refetches all the RSS Items and transfers them to Email one by one (individual emails for each Item). Do an MD5 hash of the title and compare it to all the other MD5 hashes (stored in a file)? I'm short on a good idea.
Edit: It can't be related to the Date field in the RSS item, as a lot of RSS feeds don't have a pubDate field.