asp.net.ph

String.Concat Method ( String, String )

System Namespace   String Class


Concatenates two specified instances of String.

[ VB ]
<Serializable>
Overloads Public Shared Function Concat ( _
   ByVal str0 As String, _
   ByVal str1 As String _
) As String

[ C# ]
[ Serializable ]
public static string Concat (
   string str0,
   string str1
);

[ C++ ]
[ Serializable ]
public: static String* Concat (
   String* str0,
   String* str1
);

[ JScript ]
public Serializable
static function Concat (
   str0 : String,
   str1 : String
) : String;

Parameters

str0
The first String.
str1
The second String.

Return Value

The concatenation of str0 and str1.

Remarks

An Empty string is used in place of any null argument.

See Also

String Members   String.Concat Overload List   Insert   Join   Remove   Replace   Split   Substring   Trim Skip Navigation Links


Previous page Back to top Next page

Check out related books at Amazon

© 2025 Reynald Nuñez and asp.net.ph. All rights reserved.

If you have any question, comment or suggestion
about this site, please send us a note