Java.Lang.StringBuffer.Append Method
Appends the specified subsequence of the CharSequence to this buffer.

Syntax

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

Parameters

s
the CharSequence to append.
start
the inclusive start index.
end
the exclusive end 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 s.

Remarks

Appends the specified subsequence of the CharSequence to this buffer.

If the specified CharSequence is null, then the string "null" is used to extract a subsequence.

[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