Application.args

Command line arguments passed to the application.

This is only set after the main() method is called. It's available for all the extensions methods though. It is usually passed as argument to extension methods, so it should not be necessary to use it directly (use the method extensions arguments whenever you can).

class Application
istring[] args;

Meta