GetOptions.RestOfArgs (gb.option)
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