Java.IO.Writer.Append Method
Appends a subsequence of the character sequence csq to the target.

Syntax

[Android.Runtime.Register("append", "(Ljava/lang/CharSequence;II)Ljava/lang/Appendable;", "GetAppend_Ljava_lang_CharSequence_IIHandler")]
public virtual Java.Lang.IAppendable Append (Java.Lang.ICharSequence csq, int start, int end)

Parameters

csq
the character sequence appended to the target.
start
the index of the first char in the character sequence appended to the target.
end
the index of the character following the last character of the subsequence appended to the target.

Returns

Documentation for this section has not yet been entered.

Exceptions

TypeReason
Java.IO.IOExceptionif this writer is closed or another I/O error occurs.
Java.Lang.IndexOutOfBoundsExceptionif start > end, start , end or either start or end are greater or equal than the length of csq.

Remarks

Appends a subsequence of the character sequence csq to the target. This method works the same way as Writer.writer(csq.subsequence(start, end).toString()). If csq is null, then the specified subsequence of the string "null" will be written to the target.

[Android Documentation]

Requirements

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