Parameters
- index
- The zero-based index at which to insert the value.
- value
- An Bookmark item to insert.
if (!bookmarkCollection.Contains(newBookmark)) { bookmarkCollection.Insert(0,newBookmark); int index = bookmarkCollection.IndexOf(newBookmark);//should be 0 }