Example #1
0
 internal static int GetHashCode(IReadOnlyList <IReadOnlyDictionary <string, string> >?dictionaryList)
 {
     return(CollectionEqualityHelper.GetHashCode(dictionaryList));
 }
Example #2
0
 internal static int GetHashCode(IReadOnlyList <string>?values)
 {
     return(CollectionEqualityHelper.GetHashCode(values, StringComparer.OrdinalIgnoreCase));
 }
Example #3
0
 internal static int GetHashCode(IReadOnlyDictionary <string, string>?dictionary)
 {
     return(CollectionEqualityHelper.GetHashCode(dictionary, StringComparer.Ordinal));
 }