vote up 0 vote down star

I am looking for a rather basic command-line parser class/library for C#.

All I really need it for is opening passed files, and it is not something I really feel like writing, considering it is such a small part of a much larger project that is GPL, anyways.

I've seen a bunch of stuff on Code Project, but they all either have no license, or are CPOL. Same with Code Plex they are all MP-PL, and I have no idea if it is compatible with the GPL. Plus, I don't really care to cross-license.

I guess if there isn't one, I will just write one and GPL it on Code Plex.

Thanks in advance.

flag
If the only parameters are filenames, what is there to parse? The Main method receives an array of all the command line parameters, which in your case would be the desired file names. All you have to do is (try) to open them. – Cogwheel Aug 31 at 18:19
That is my imitate need, but I'm sure it will be used for more at some point. I was just looking for something that I could drop-in and get on with my life. – agentlame Aug 31 at 18:30

1 Answer

vote up 4 vote down check

Jonathan Pryor's Options library is MIT/X11-licensed, which is GPL compatible. It's being shipped with Mono 2.2 as Mono.Options:

http://tirania.org/blog/archive/2008/Oct-14.html

link|flag
I was going to say, an MIT licensed command line parser would be even better :) – 280Z28 Aug 31 at 18:22
Yeah, I should have said GPL-compatible. Thanks for the correction. As for Mono.Options, I wasn't sure if I could just rip a part of Mono out, as I know Novel dual-licenses it. But, if it's X11, I guess I'm fine. Thanks! – agentlame Aug 31 at 18:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.