Example #1
0
 internal static void AddRemoveItemInList(List<string> listnames, TraktListItem item, bool remove)
 {
     AddRemoveItemInList(listnames, new List<TraktListItem>() { item }, remove);
 }
Example #2
0
 public static void AddRemoveItemInList(string listname, TraktListItem item, bool remove)
 {
     AddRemoveItemInList(new List<string> { listname }, new List<TraktListItem>() { item }, remove);
 }