UtilApplicationParameterizationArgumentsAreEmpty Method
Determines whether the command-line arguments for the current process are empty.
Namespace: DevCase.Core.Application.ParameterizationAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static bool ArgumentsAreEmpty(
IEnumerable<string> args = null
)
Public Shared Function ArgumentsAreEmpty (
Optional args As IEnumerable(Of String) = Nothing
) As Boolean
Dim args As IEnumerable(Of String)
Dim returnValue As Boolean
returnValue = UtilApplicationParameterization.ArgumentsAreEmpty(args)
public:
static bool ArgumentsAreEmpty(
IEnumerable<String^>^ args = nullptr
)
static member ArgumentsAreEmpty :
?args : IEnumerable<string>
(* Defaults:
let _args = defaultArg args null
*)
-> bool
No code example is currently available or this language may not be supported.
- args IEnumerableString (Optional)
-
A custom collection of arguments to examine.
Boolean if the arguments are empty, otherwise,
.