Example #1
0
 public void Verify( CommandLineHandler CommandLineHandler )
 {
     foreach ( string Flag in this.FlagIdentifiers ) {
     if ( CommandLineHandler.NumMatches( Flag ) != 1 ) {
       throw new CommandLineException( "Multiple flags with same Idenifier." );
     }
       }
 }