GetOptions.RestOfArgs (gb.option)

Function RestOfArgs ( ) As String[]

Returns a list of all command line arguments, in the order they were written.

Examples

./options-sample.gambas file1 file2
Dim OptionsClass As New GetOptions("a")

Dim sElement As String

For Each sElement In OptionsClass.RestOfArgs()
    Print sElement
Next
file1
file2