public bool ExistsInList_of_String_List_Case_Sensitive(string entry) { return(ListLibrary.ExistsInList(entry, _searchListString, caseSensitive: true)); }
public bool ExistsInList_of_String_ObservableCollection_Case_Sensitive(string entry) { return(ListLibrary.ExistsInList(entry, _searchObservableCollectionString, caseSensitive: true)); }
public bool ExistsInList_of_Integer_Null_List(int value) { return(ListLibrary.ExistsInList(value, null)); }
public bool ExistsInList_of_Integer_ObservableCollection(int value) { return(ListLibrary.ExistsInList(value, _searchObservableCollectionInteger)); }
public bool ExistsInList_of_Integer_List(int value) { return(ListLibrary.ExistsInList(value, _searchListInteger)); }
public bool ExistsInList_of_String_List_Case_Insensitive(string entry) { return(ListLibrary.ExistsInList(entry, _searchListString)); }
public bool ExistsInList_of_String_Null_List_Case_Sensitive(string entry) { return(ListLibrary.ExistsInList(entry, null, caseSensitive: true)); }