using System.Collections; namespace Terminal.Gui; /// /// sub-interface for and . See also /// / /// public interface IListCollectionNavigator : ICollectionNavigator { /// The collection of objects to search. is used to search the collection. IList Collection { get; set; } }