Esempio n. 1
0
    private static bool LRUCacheTest1()
    {
        LRUCache lruCache = new LRUCache(0);

        return(lruCache.GetType() == typeof(LRUCache));
    }