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

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

            return(info.GetOptionValue(target));
        }