YArgument
|
Name | Description | |
---|---|---|
ArgumentIsSet(String) |
Check if the argName is set as a boolean.
Example C# YArgumentParser argumentParser = new YArgumentParser(new string[] { "First value of the main argument", "Second value of the main argument", "-s", "source", "/d", "destination", "-readonly" });
|
|
ArgumentIsSetT(T) |
Check if the argName is set as a boolean.
Example C# enum ArumentsTypes { main = 0, s, m, readonly, } YArgumentParser argumentParser = new YArgumentParser(new string[] { "First value of the main argument", "Second value of the main argument", "-s", "source", "/d", "destination", "-readonly" });
|