Interface TextWithTerminator.ISelector
A selector of a part of a TextWithTerminator or RotatedTextWithTerminator.
Namespace: MoreStructures
Assembly: MoreStructures.dll
Syntax
public interface ISelector
Methods
| Improve this Doc View SourceOf(TextWithTerminator)
Extract the substring identified by this selector, out of the provided TextWithTerminator.
Declaration
string Of(TextWithTerminator text)
Parameters
Type | Name | Description |
---|---|---|
TextWithTerminator | text | The text with terminator, to extract a substring of. |
Returns
Type | Description |
---|---|
System.String | A substring, whose length depends on the selector. |
OfRotated(RotatedTextWithTerminator)
Extract the substring identified by this selector, out of the provided RotatedTextWithTerminator.
Declaration
string OfRotated(RotatedTextWithTerminator text)
Parameters
Type | Name | Description |
---|---|---|
RotatedTextWithTerminator | text | The text with terminator, to extract a substring of. |
Returns
Type | Description |
---|---|
System.String | A substring, whose length depends on the selector. |