 | StringUtilsTerminateString Method |
Terminates a string with the given end string/character, but only if the
value specified doesn't already exist and the string is not empty.
Namespace:
Koden.Utils
Assembly:
Koden.Utils (in Koden.Utils.dll) Version: 1.1.6453.26060
Syntaxpublic static string TerminateString(
string value,
string terminator
)
Public Shared Function TerminateString (
value As String,
terminator As String
) As String
public:
static String^ TerminateString(
String^ value,
String^ terminator
)
static member TerminateString :
value : string *
terminator : string -> string
Parameters
- value
- Type: SystemString
The value. - terminator
- Type: SystemString
The terminator.
Return Value
Type:
String[Missing <returns> documentation for "M:Koden.Utils.StringUtils.TerminateString(System.String,System.String)"]
See Also