using System.Collections.Generic; using System.Linq; namespace IStation { internal sealed partial class SharedMemoryCache { /// /// Iterate though all keys /// /// public IEnumerable GetKeys() { return this._memoryCache.Select(x => x.Key); } } }