| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
If you need to handle command line arguments in your scripts you can do that by adding them after double dash:
scriptcs myscript.csx -- arg1 arg2
Then use them in your script with the string array Env.ScriptArgs
Console.Write(Env.ScriptArgs[0]); // writes arg1
| Back | FazBrowse Home | New Git URL |