Top

Tags


Roadkill .NET Wiki

Google ads

Recommended reading


Search

Entries in command-line (2)

Sunday
Aug082010

CommandOptions - interactive console application command parser

This is a class based on the Novell Options class for easily parsing commands and their arguments for console applications that sit and wait for input. I've tried to keep it as elegant the Novel Options class, which is aimed at console applications that exit immediately. My adaption is for interactive apps, and restricts you to two types of handler methods - no arguments, and an array of strings as params.

Click to read more ...

Wednesday
Jun172009

Command line arguments parser

There are already 2 or 3 command line arguments in C#, two of which are found on the codeproject.com website. Both of these didn't match my exact needs so I decided to write my own one.

Click to read more ...