Example #1
0
 public bool ExistsInList_of_String_List_Case_Sensitive(string entry)
 {
     return(ListLibrary.ExistsInList(entry, _searchListString, caseSensitive: true));
 }
Example #2
0
 public bool ExistsInList_of_String_ObservableCollection_Case_Sensitive(string entry)
 {
     return(ListLibrary.ExistsInList(entry, _searchObservableCollectionString, caseSensitive: true));
 }
Example #3
0
 public bool ExistsInList_of_Integer_Null_List(int value)
 {
     return(ListLibrary.ExistsInList(value, null));
 }
Example #4
0
 public bool ExistsInList_of_Integer_ObservableCollection(int value)
 {
     return(ListLibrary.ExistsInList(value, _searchObservableCollectionInteger));
 }
Example #5
0
 public bool ExistsInList_of_Integer_List(int value)
 {
     return(ListLibrary.ExistsInList(value, _searchListInteger));
 }
Example #6
0
 public bool ExistsInList_of_String_List_Case_Insensitive(string entry)
 {
     return(ListLibrary.ExistsInList(entry, _searchListString));
 }
Example #7
0
 public bool ExistsInList_of_String_Null_List_Case_Sensitive(string entry)
 {
     return(ListLibrary.ExistsInList(entry, null, caseSensitive: true));
 }