/*https://github.com/sidristij/memory-pools/blob/master/MemoryPools.Collections*/ namespace MemoryPools.Collections { public interface IPoolingEnumerator : IPoolingEnumerator { // Gets the element in the collection at the current position of the enumerator. /// The element in the collection at the current position of the enumerator. new T Current { get; } } }