StringJoinOption Enumeration

String join options

Namespace:  Tortuga.Anchor
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public enum StringJoinOption
Public Enumeration StringJoinOption

Members


Member nameDescription
None Use the same behavior as string.Join
DiscardNulls Nulls are skipped. This prevents two separators from appearing one after the other.
DiscardEmptyAndNull Nulls and empty strings are skipped. This prevents two separators from appearing one after the other.