ITokenizedStringList Interface
A tokenized representation of a string into abutting and non-overlapping segments.
Assembly: Microsoft.VisualStudio.Text.Data (in Microsoft.VisualStudio.Text.Data.dll)
| Name | Description | |
|---|---|---|
![]() | Count | (Inherited from ICollection<T>.) |
![]() | IsReadOnly | (Inherited from ICollection<T>.) |
![]() | Item[Int32] | (Inherited from IList<T>.) |
![]() | Original | The original string that was tokenized. |
| Name | Description | |
|---|---|---|
![]() | Add(T) | (Inherited from ICollection<T>.) |
![]() | Clear() | (Inherited from ICollection<T>.) |
![]() | Contains(T) | (Inherited from ICollection<T>.) |
![]() | CopyTo(T[], Int32) | (Inherited from ICollection<T>.) |
![]() | GetElementInOriginal(Int32) | Maps the index of an element to its span in the original list. |
![]() | GetEnumerator() | (Inherited from IEnumerable<T>.) |
![]() | GetSpanInOriginal(Span) | Maps a span of elements in this list to the span in the original list. |
![]() | IndexOf(T) | (Inherited from IList<T>.) |
![]() | Insert(Int32, T) | (Inherited from IList<T>.) |
![]() | Remove(T) | (Inherited from ICollection<T>.) |
![]() | RemoveAt(Int32) | (Inherited from IList<T>.) |
This interface implements IList<T> so that it can be used with IDifferenceService, which finds the differences between two sequences represented as IList<T> objects.

