Argv class is used to get the arguments passed to the program from the command line.
shell Example
$mono hello.exe 1 2 3 4
Then you application [hello.exe] will be able to access these arguments passed from the command line,
[1,2,3,4 in this case] using the Glib.Argv class.