namespace Vanara; /// Interface representing a class that holds an indexer. /// The type of the indexer's value. /// The type of the indexer's return value. public interface ISupportIndexer { /// Gets or sets the with the specified . /// The . /// The . TRet this[TVal index] { get; set; } }