| StringFormatSafeJoin Method |
Concatenates the values, using the specified separator between the elements.
This method is similar to
Join(String, Object) except it
formats null values as <null>
Namespace:
Akka.Util
Assembly:
Akka (in Akka.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax public static string SafeJoin(
string separator,
params Object[] args
)
static member SafeJoin :
separator : string *
args : Object[] -> string
Parameters
- separator
- Type: SystemString
The separator. - args
- Type: SystemObject
The arguments.
Return Value
Type:
StringTBD
See Also