IStringList public interface IStringList : IEnumerable<string>, IEnumerable Represents a string list. Documentation Code string this[int index] { get; } Gets the value at the specified index. int Length { get; } Gets the number of entries. bool Contains(string entry) Returns a boolean indicating if the specified entry is available.