namespace Sprache { /// /// Represents a text span of the matched result. /// /// Type of the matched result. public interface ITextSpan { /// /// Gets the resulting value. /// T Value { get; } /// /// Gets the starting . /// Position Start { get; } /// /// Gets the ending . /// Position End { get; } /// /// Gets the length of the text span. /// int Length { get; } } }