C# version for SimpleCSE Package
Probably the easiest way to instal the SimpleCSE package to a Visual-Studio project is using nuget:
In a new Visual-Studio project, open Tools ➡️ NuGet Package Manager ➡️ Package Manager Console
install-package SimpleCSE
That's it!
SimpleRss rss = new SimpleRss("http://rss.cnn.com/rss/edition.rss");
for (int i = 0; i < rss.GetSize(); ++i)
{
Console.WriteLine(rss.GetItem(i).GetTitle());
}