LocalizedString.Join Method
The Join method joins an array of strings together with a separator.
Namespace: Microsoft.Exchange.Data.Common
Assembly: Microsoft.Exchange.Data.Common (in Microsoft.Exchange.Data.Common.dll)
Syntax
'Declaration
Public Shared Function Join ( _
separator As Object, _
value As Object() _
) As LocalizedString
'Usage
Dim separator As Object
Dim value As Object()
Dim returnValue As LocalizedString
returnValue = LocalizedString.Join(separator, _
value)
public static LocalizedString Join(
Object separator,
Object[] value
)
Parameters
- separator
Type: System.Object
The string that will appear between the string fragments after they are joined into a new LocalizedString object.
- value
Type: []
An array containing objects to be joined as strings.
Return Value
Type: Microsoft.Exchange.Data.Common.LocalizedString
The Join method returns a LocalizedString object containing the objects in value separated by separator.