asp.net.ph

String.Concat Method ( String, String, String )

System Namespace   String Class


Concatenates three specified instances of String.

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

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

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

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

Parameters

str0
The first String.
str1
The second String.
str2
The third String.

Return Value

The concatenation of str0, str1, and str2.

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