Skip to content

Instantly share code, notes, and snippets.

@eladmarg
eladmarg / GenericLRUCache.cs
Created September 28, 2016 20:28
LRUCache C# Implementation
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
namespace Utils
{
public class GenericLRUCache<TV, TU> where TU : class
{