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