Class StringFormat
Utility methods for safely formatting strings with null values.
Inherited Members
Namespace: Akka.Util
Assembly: Akka.dll
Syntax
public static class StringFormat
Methods
| Edit this page View SourceSafeJoin(string, params object[])
Concatenates the values, using the specified separator between the elements. This method is similar to Join(string, params object[]) except it formats null values as <null>
Declaration
public static string SafeJoin(string separator, params object[] args)
Parameters
| Type | Name | Description |
|---|---|---|
| string | separator | The separator. |
| object[] | args | The arguments. |
Returns
| Type | Description |
|---|---|
| string | A string with the concatenated values, separated by the specified separator. |
Edit this page