Java.Lang.StringBuilder.Substring Method
Returns the String value of the subsequence from the start index to the end index.

Syntax

[Android.Runtime.Register("substring", "(II)Ljava/lang/String;", "")]
public override string Substring (int start, int end)

Parameters

start
the inclusive start index to begin the subsequence.
end
the exclusive end index to end the subsequence.

Returns

Documentation for this section has not yet been entered.

Exceptions

TypeReason
Java.Lang.StringIndexOutOfBoundsExceptionif start is negative, greater than end or if end is greater than the current StringBuilder.Length.

Remarks

Returns the String value of the subsequence from the start index to the end index.

[Android Documentation]

Requirements

Namespace: Java.Lang
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1