Normalizer2.Append Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Append(StringBuilder, ICharSequence) |
Appends the second string to the first string (merging them at the boundary) and returns the first string. |
Append(StringBuilder, String) |
Appends the second string to the first string (merging them at the boundary) and returns the first string. |
Append(StringBuilder, ICharSequence)
Appends the second string to the first string (merging them at the boundary) and returns the first string.
[Android.Runtime.Register("append", "(Ljava/lang/StringBuilder;Ljava/lang/CharSequence;)Ljava/lang/StringBuilder;", "GetAppend_Ljava_lang_StringBuilder_Ljava_lang_CharSequence_Handler", ApiSince=24)]
public abstract Java.Lang.StringBuilder? Append (Java.Lang.StringBuilder? first, Java.Lang.ICharSequence? second);
[<Android.Runtime.Register("append", "(Ljava/lang/StringBuilder;Ljava/lang/CharSequence;)Ljava/lang/StringBuilder;", "GetAppend_Ljava_lang_StringBuilder_Ljava_lang_CharSequence_Handler", ApiSince=24)>]
abstract member Append : Java.Lang.StringBuilder * Java.Lang.ICharSequence -> Java.Lang.StringBuilder
Parameters
- first
- StringBuilder
string, should be normalized
- second
- ICharSequence
string, should be normalized
Returns
first
- Attributes
Remarks
Appends the second string to the first string (merging them at the boundary) and returns the first string. The result is normalized if both the strings were normalized. The first and second strings must be different objects.
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(StringBuilder, String)
Appends the second string to the first string (merging them at the boundary) and returns the first string.
public Java.Lang.StringBuilder? Append (Java.Lang.StringBuilder? first, string? second);
member this.Append : Java.Lang.StringBuilder * string -> Java.Lang.StringBuilder
Parameters
- first
- StringBuilder
string, should be normalized
- second
- String
string, should be normalized
Returns
first
Remarks
Appends the second string to the first string (merging them at the boundary) and returns the first string. The result is normalized if both the strings were normalized. The first and second strings must be different objects.
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.