// ---------------- Functions ---------------- /// <summary> /// Adds a cloned version of the passed-in feed /// to the feed list. /// </summary> /// <param name="feed">The feed to add.</param> public void AddFeed(Feed feed) { this.feeds.Add(feed.Clone()); }