Java.Lang.IAppendable.Append Method
Appends a subsequence of csq.

Syntax

[Android.Runtime.Register("append", "(Ljava/lang/CharSequence;II)Ljava/lang/Appendable;", "GetAppend_Ljava_lang_CharSequence_IIHandler:Java.Lang.IAppendableInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public IAppendable Append (ICharSequence csq, int start, int end)

Parameters

csq
the character sequence to append.
start
the first index of the subsequence of csq that is appended.
end
the last index of the subsequence of csq that is appended.

Returns

Documentation for this section has not yet been entered.

Exceptions

TypeReason
Java.Lang.IndexOutOfBoundsExceptionif start , end , start > end or end is greater than the length of csq.
Java.IO.IOExceptionif an I/O error occurs.

Remarks

Appends a subsequence of csq.

If csq is not null then calling this method is equivalent to calling append(csq.subSequence(start, end)).

If csq is null, the characters "null" are appended.

[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