public bool オプションが指定されているかどうかを調べる(bool ignoresCase, Dictionary <CommandOptionKey, string> optDic, CommandOption target)
        {
            var info = new ExParsedInfo(ignoresCase, new string[0], optDic);

            return(info.HasOption(target));
        }
        public string オプションの値を取得する(bool ignoresCase, Dictionary <CommandOptionKey, string> optDic, CommandOption target)
        {
            var info = new ExParsedInfo(ignoresCase, new string[0], optDic);

            return(info.GetOptionValue(target));
        }