SourceText.ToString

ToString()

Override the ToString() method.

public override string ToString()

Return Value

The string.

See Also


ToString(int)

Override the ToString() method.

public string ToString(int start)
ParameterTypeDescription
startInt32The integer start value.

Return Value

The string result.

Exceptions

exceptioncondition
ArgumentOutOfRangeExceptionThe index is negative -or- larger than the length.

See Also


ToString(int, int)

Defines the interface ToString()

public string ToString(int start, int length)
ParameterTypeDescription
startInt32The start position.
lengthInt32The length.

Return Value

The string.

See Also


ToString(TextSpan)

Defines the interface ToString()

public virtual string ToString(TextSpan span)
ParameterTypeDescription
spanTextSpanThe TextSpan.

Return Value

The string.

See Also