↧
Answer by Greg Beech for conversion of atom feed to rss feed
For performance reasons, many of the *Writer classes in .NET buffer their output; that is they do not write straight to the output device but keep some of the data in memory until it hits a threshold...
View Articleconversion of atom feed to rss feed
i want to convert a XML find having atom feed into rss feed. I used the following method :public void AtomToRss20(string atomFileName, string rssFileName) { ConvertToRss20(ReadFeed(atomFileName),...
View Article