using System; using System.Collections; using System.Collections.Generic; namespace System.Linq { public interface ILookup : IEnumerable> { int Count { get; } bool Contains (TKey key); IEnumerable this [TKey key] { get; } } }