AbstractStringBuilder.Append Method

Definition

Overloads

Append(ICharSequence)

Appends the string representation of the char argument to this sequence.

Append(Char)

Appends the string representation of the char argument to this sequence.

Append(String)

Appends the string representation of the char argument to this sequence.

Append(ICharSequence, Int32, Int32)

Appends the string representation of the char argument to this sequence.

Append(String, Int32, Int32)

Appends the string representation of the char argument to this sequence.

Append(ICharSequence)

Appends the string representation of the char argument to this sequence.

[Android.Runtime.Register("append", "(Ljava/lang/CharSequence;)Ljava/lang/Object;", "GetAppend_Ljava_lang_CharSequence_Handler", ApiSince=26)]
public virtual Java.Lang.IAppendable? Append (Java.Lang.ICharSequence? s);
[<Android.Runtime.Register("append", "(Ljava/lang/CharSequence;)Ljava/lang/Object;", "GetAppend_Ljava_lang_CharSequence_Handler", ApiSince=26)>]
abstract member Append : Java.Lang.ICharSequence -> Java.Lang.IAppendable
override this.Append : Java.Lang.ICharSequence -> Java.Lang.IAppendable

Parameters

Returns

a reference to this object.

Implements

Attributes

Remarks

Java documentation for java.lang.AbstractStringBuilder.append(char).

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(Char)

Appends the string representation of the char argument to this sequence.

[Android.Runtime.Register("append", "(C)Ljava/lang/Object;", "GetAppend_CHandler", ApiSince=26)]
public virtual Java.Lang.IAppendable? Append (char c);
[<Android.Runtime.Register("append", "(C)Ljava/lang/Object;", "GetAppend_CHandler", ApiSince=26)>]
abstract member Append : char -> Java.Lang.IAppendable
override this.Append : char -> Java.Lang.IAppendable

Parameters

c
Char

a char.

Returns

a reference to this object.

Implements

Attributes

Remarks

Java documentation for java.lang.AbstractStringBuilder.append(char).

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(String)

Appends the string representation of the char argument to this sequence.

public Java.Lang.IAppendable? Append (string? s);
member this.Append : string -> Java.Lang.IAppendable

Parameters

s
String

Returns

a reference to this object.

Remarks

Java documentation for java.lang.AbstractStringBuilder.append(char).

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(ICharSequence, Int32, Int32)

Appends the string representation of the char argument to this sequence.

[Android.Runtime.Register("append", "(Ljava/lang/CharSequence;II)Ljava/lang/Object;", "GetAppend_Ljava_lang_CharSequence_IIHandler", ApiSince=26)]
public virtual Java.Lang.IAppendable? Append (Java.Lang.ICharSequence? s, int start, int end);
[<Android.Runtime.Register("append", "(Ljava/lang/CharSequence;II)Ljava/lang/Object;", "GetAppend_Ljava_lang_CharSequence_IIHandler", ApiSince=26)>]
abstract member Append : Java.Lang.ICharSequence * int * int -> Java.Lang.IAppendable
override this.Append : Java.Lang.ICharSequence * int * int -> Java.Lang.IAppendable

Parameters

start
Int32
end
Int32

Returns

a reference to this object.

Implements

Attributes

Remarks

Java documentation for java.lang.AbstractStringBuilder.append(char).

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(String, Int32, Int32)

Appends the string representation of the char argument to this sequence.

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

Parameters

s
String
start
Int32
end
Int32

Returns

a reference to this object.

Remarks

Java documentation for java.lang.AbstractStringBuilder.append(char).

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