Advertisement
Guest User

Untitled

a guest
Oct 26th, 2018
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. Dictionary<string, string> dictionary = new Dictionary<string, string>();
  2.  
  3. foreach (SyndicationItem epdesc in feed.Items)
  4.  
  5. {
  6. var episodeName = epdesc.Title.Text;
  7. var episodeDesc = epdesc.Summary.Text;
  8.  
  9. dictionary.Add(episodeName, episodeDesc);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement