Skip to content

Instantly share code, notes, and snippets.

@elbruno
Last active May 28, 2025 19:34
Show Gist options
  • Save elbruno/295b4286359fdba19392d9229f5b2d7c to your computer and use it in GitHub Desktop.
Save elbruno/295b4286359fdba19392d9229f5b2d7c to your computer and use it in GitHub Desktop.
readrssfeedusingnet10.cs
#:package CodeHollow.FeedReader@1.*
using CodeHollow.FeedReader;
var feed = await FeedReader.ReadAsync("https://elbruno.com/feed/");
foreach (var item in feed.Items.Take(5).ToList())
{
Console.WriteLine($"- {item.Title}");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment