Exemplo n.º 1
0
 public MapImageParsedArguments( string[] args )
     : base()
 {
     ProcessOption += new ProcessArgumentHandler(MapImageParsedArguments_ProcessOption);
     ProcessParameter += new ProcessArgumentHandler(MapImageParsedArguments_ProcessParameter);
     Parse( args );
 }
Exemplo n.º 2
0
 protected ParsedArguments( )
 {
     // Attach help handler
     ProcessOption += new ProcessArgumentHandler( ParsedArguments_ProcessOption );
 }
Exemplo n.º 3
0
 public MapColorParsedArguments( string[] args )
 {
     ProcessOption += new ProcessArgumentHandler(MapColorParsedArguments_ProcessOption);
     Parse( args );
 }