If I add a recent item, via the JumpList.AddToRecentCategory static method, how can I ensure that the same item is "overwritten" and goes to the top of the list without creating a duplicate?
Specifically, I am adding JumpTask objects each time, as recent items in my application are not actually physical files on disk.
bool exists = Enumerable.Any(item => item.Title == newItem.Title)onJumpList.JumpItems– jberger Apr 30 at 20:45