public IEnumerable<Bookmark> FindMapBookmarks(List<Bookmark> bookmarks, Map map) { //Return all the bookmarks from a collection that are stored with a given map. return bookmarks.Where(b => b.MapURI == map.URI); }
Target Platforms: Windows 10, Windows 8.1, Windows 7