资 源 简 介
What?
A .NET Framework library for reading and writing documents in the Atom Syndication Format, including support for the Atom Publishing Protocol and Feed Paging and Archiving. Supports .NET 3.5 and 4.
Who?
Contact me at jordan@nerdsince1984.com.
How?
Writing a feed
```
AtomFeed feed = new AtomFeed("http://example.org/feed", "Example Atom Feed", DateTime.Now);
feed.Subtitle = "Demonstrating how to use the Atom Library for the .NET Framework";
feed.Add(new AtomLink("http://example.org/feed", "self"));
feed.Add(new AtomLink("http://example.org"));
AtomEntry entry = new AtomEntry("http://exmaple.org/entries/1", "Example Entry One", DateTime.Now)