public static string JoinArguments(
IEnumerable<string> args = null,
char delimiter = ''
)
Public Shared Function JoinArguments (
Optional args As IEnumerable(Of String) = Nothing,
Optional delimiter As Char = ""C
) As String
Dim args As IEnumerable(Of String)
Dim delimiter As Char
Dim returnValue As String
returnValue = UtilApplicationParameterization.JoinArguments(args,
delimiter)
public:
static String^ JoinArguments(
IEnumerable<String^>^ args = nullptr,
wchar_t delimiter = L''
)
static member JoinArguments :
?args : IEnumerable<string> *
?delimiter : char
(* Defaults:
let _args = defaultArg args null
let _delimiter = defaultArg delimiter ''
*)
-> string
No code example is currently available or this language may not be supported.
[Missing <param name="delimiter"/> documentation for "M:DevCase.Core.Application.Parameterization.UtilApplicationParameterization.JoinArguments(System.Collections.Generic.IEnumerable{System.String},System.Char)"]
[Missing <returns> documentation for "M:DevCase.Core.Application.Parameterization.UtilApplicationParameterization.JoinArguments(System.Collections.Generic.IEnumerable{System.String},System.Char)"]
No code example is currently available or this language may not be supported.
Dim args As String = JoinArguments(, ";"c)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.