Beispiel #1
0
        private Options(ArgumentDictionary arguments)
        {
            OptionProcessingHelper optionProcessor = new OptionProcessingHelper(this, arguments);

            optionProcessor.ProcessArguments();
        }
Beispiel #2
0
 internal bool IsTypeExcluded(Type type)
 {
     return(OptionProcessingHelper.IsTypeSpecified(type, _excludedTypes, Options.Cmd.ExcludeType));
 }