Java.Lang.StringBuilder.Append Method
Appends the string representation of the specified subsequence of the CharSequence.

Syntax

[Android.Runtime.Register("append", "(Ljava/lang/CharSequence;II)Ljava/lang/StringBuilder;", "")]
public override IAppendable Append (ICharSequence csq, int start, int end)

Parameters

csq
the CharSequence to append.
start
the beginning index.
end
the ending index.

Returns

Documentation for this section has not yet been entered.

Exceptions

TypeReason
Java.Lang.IndexOutOfBoundsExceptionif start or end are negative, start is greater than end or end is greater than the length of csq.

Remarks

Appends the string representation of the specified subsequence of the CharSequence. If the CharSequence is null, then the string "null" is used to extract the subsequence from.

[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