[Mono-list] Command Line Parsing

Abe Gillespie abe.gillespie at gmail.com
Tue Nov 8 12:12:54 EST 2005


1.  Is there a utility class out there that helps parse command line
arguments in a standard way?
2.  I think I ran into a bug playing around with the command line. 
When I send an asterisk "*" as one of the arguments I get some weird
stuff.  On Windows it seems to work ok.  Try the following with an
asterisk as one of the args:

using System;
class Program
{
    static void Main(string[] args)
    {
        foreach (string s in args)
            Console.WriteLine(s);
    }
}

Thanks.
-Abe


More information about the Mono-list mailing list