Last active
May 28, 2025 19:34
-
-
Save elbruno/295b4286359fdba19392d9229f5b2d7c to your computer and use it in GitHub Desktop.
readrssfeedusingnet10.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#: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