EAPUtilMergeStrings Method |
Merge two (possibly empty) strings using the specified delimiter;
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public static string MergeStrings(
string s1,
string s2,
string delim
)
Public Shared Function MergeStrings (
s1 As String,
s2 As String,
delim As String
) As String
Parameters
- s1
- Type: SystemString
The first string to merge. - s2
- Type: SystemString
The second string to merge. - delim
- Type: SystemString
The delimiter to use.
Return Value
Type:
StringThe merged strings.
See Also