XmlCharacterData.Substring(Int32, Int32) Method

Definition

Retrieves a substring of the full string from the specified range.

public:
 virtual System::String ^ Substring(int offset, int count);
public virtual string Substring (int offset, int count);
abstract member Substring : int * int -> string
override this.Substring : int * int -> string
Public Overridable Function Substring (offset As Integer, count As Integer) As String

Parameters

offset
Int32

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

count
Int32

The number of characters to retrieve.

Returns

The substring corresponding to the specified range.

Applies to