I'm looking for a getopt library for c#. So far I found a few (phpguru, XGetOptCS, getoptfordotnet) but these look more like unfinished attempts that only support a part of C's getopt. Is there a full getopt c# implementation?
|
Here is a .NET Implementation of getopt: http://www.codeplex.com/getopt |
|||
|
|
|
Miguel de Icaza raves about Mono.Options. It is just a single C# source file, so you can just include it in your project without introducing any new dependencies. |
||||
|
|
|
Here is something I wrote, it works rather nice, and has quite a lot of features for the tiny amount of code. It is not getopts however, but it may suit your needs. Feel free to ask some questions. |
|||
|
|
|
For posterity: CommandParser is another one with a BSD license |
|||
|
|
|
It's not getopt, but you might try NConsoler. It uses attributes to define arguments and actions. |
|||
|
|
|
The Mono Project has (or rather had) one based on attributes, but last I checked it was marked as obsolete. But since it's open source, you might be able to pull the code out and use it yourself. |
|||
|
|
For the record, NUnit includes a simple one-file command-line parser in The parser supports named flag parameters (like |
|||
|
|