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
_______________________________________________
Mono-list maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-list

Reply via email to