[corlib] System.Collections from reference sources
[mono.git] / mcs / class / corlib / ReferenceSources / HashHelpers.cs
1 namespace System.Collections.Concurrent
2 {
3         static class HashHelpers
4         {
5                 // Reference source has broken ConcurrentDictionary code which depends
6                 // on #if FEATURE_RANDOMIZED_STRING_HASHING this is a workaround not to require it
7                 public static object GetEqualityComparerForSerialization (object comparer)
8                 {
9                         return comparer;
10                 }
11         }
12 }