String.Concat(String) Method

Definition

Concatenates the specified string to the end of this string.

[Android.Runtime.Register("concat", "(Ljava/lang/String;)Ljava/lang/String;", "")]
public string Concat (string str);
[<Android.Runtime.Register("concat", "(Ljava/lang/String;)Ljava/lang/String;", "")>]
member this.Concat : string -> string

Parameters

str
String

the String that is concatenated to the end of this String.

Returns

String

a string that represents the concatenation of this object's characters followed by the string argument's characters.

Attributes

Remarks

Java documentation for java.lang.String.concat(java.lang.String).

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