System.Collections.HashHelpers
namespace System.Collections
{
internal static class HashHelpers
{
public const uint HashCollisionThreshold = 100;
public const int MaxPrimeArrayLength = 2147483587;
public const int HashPrime = 101;
public static bool IsPrime(int candidate);
public static int GetPrime(int min);
public static int ExpandPrime(int oldSize);
public static ulong GetFastModMultiplier(uint divisor);
public static uint FastMod(uint value, uint divisor, ulong multiplier);
}
}