Table of Contents

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 int

The position within the string to start retrieving. An offset of zero indicates the starting point is at the start of the data.

count int

The number of characters to retrieve.

Returns

string

The substring corresponding to the specified range.