YArgument
|
Name | Description | |
---|---|---|
YArgumentParser(String) |
Create a new argument parser engine from an argument string.
Example C# YArgumentParser argumentParser = new YArgumentParser("\"First value of the main argument\" \"Second value of the main argument\" -s source /d destination -readonly");
|
|
YArgumentParser(String) |
Create a new argument parser engine from an argument list.
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" });
|