IAppendableExtensions.Append Method

Definition

Overloads

Name Description
Append(IAppendable, String)

Appends the specified value to this character sequence.

Append(IAppendable, String, Int32, Int32)

Appends the specified value to this character sequence.

Append(IAppendable, String)

Appends the specified value to this character sequence.

public static Java.Lang.IAppendable Append(this Java.Lang.IAppendable self, string? csq);
static member Append : Java.Lang.IAppendable * string -> Java.Lang.IAppendable

Parameters

self
IAppendable

The character sequence to append to.

csq
String

The character sequence to append.

Returns

This character sequence after the append operation.

Remarks

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

Append(IAppendable, String, Int32, Int32)

Appends the specified value to this character sequence.

public static Java.Lang.IAppendable Append(this Java.Lang.IAppendable self, string? csq, int start, int end);
static member Append : Java.Lang.IAppendable * string * int * int -> Java.Lang.IAppendable

Parameters

self
IAppendable

The character sequence to append to.

csq
String

The character sequence to append.

start
Int32

The inclusive start index of the range.

end
Int32

The exclusive end index of the range.

Returns

This character sequence after the append operation.

Remarks

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to