// dnlib: See LICENSE.txt for more info using System.Collections.Generic; namespace dnlib.Utils { /// /// Interface to access a lazily initialized list /// /// Type to store in list interface ILazyList : IList { } }