Java.Lang.StringBuffer.Insert Method
Inserts the specified subsequence of characters into this buffer at the specified index.

Syntax

[Android.Runtime.Register("insert", "(I[CII)Ljava/lang/StringBuffer;", "")]
public StringBuffer Insert (int index, char[] chars, int start, int length)

Parameters

index
the index at which to insert.
chars
the character array to insert.
start
the starting offset.
length
the number of characters.

Returns

Documentation for this section has not yet been entered.

Exceptions

TypeReason
Java.Lang.NullPointerExceptionif chars is null.
Java.Lang.StringIndexOutOfBoundsExceptionif length , start , start + length > chars.length, index or index > length()

Remarks

Inserts the specified subsequence of characters into this buffer at the specified 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