Method Substring
- Namespace
- SharpVectors.Dom
- Assembly
- SharpVectors.Core.dll
Substring(int, int)
Retrieves a substring of the full string from the specified range.
string Substring(int offset, int count)
Parameters
offset
intThe position within the string to start retrieving. An offset of zero indicates the starting point is at the start of the data.
count
intThe number of characters to retrieve.
Returns
- string
The substring corresponding to the specified range.