#if NET20 || NET30 || !NET_4_6 using System.Collections.Generic; namespace System.Linq.Reimplement { public interface ILookup : IEnumerable> { int Count { get; } IEnumerable this[TKey key] { get; } bool Contains(TKey key); } } #endif