Пример #1
0
    static Dictionary <string, string> GetCommandList()
    {
        Dictionary <string, string> commandLineOption = new Dictionary <string, string>();

        for (CommandType i = CommandType.buildNumber; i < CommandType.CONT; i++)
        {
            string key = i.ToKey();
            commandLineOption.Add(key, GetParam(key));
        }
        return(commandLineOption);
    }