1 instantiation of CacheKey
Microsoft.CodeAnalysis.UnitTests (1)
Collections\CachingFactoryTests.cs (1)
36
var key = new
CacheKey
(0);
4 references to CacheKey
Microsoft.CodeAnalysis.UnitTests (4)
Collections\CachingFactoryTests.cs (4)
18
public static int GetHashCode(
CacheKey
key) { return key.Value; }
31
var cache = new CachingFactory<
CacheKey
, CacheValue>(512,
36
var
key = new CacheKey(0);
37
Assert.Equal(0,
CacheKey
.GetHashCode(key));