Process() private method

private Process ( IEnumerable cmdlineArgs ) : void
cmdlineArgs IEnumerable
return void
Exemplo n.º 1
0
        /// <summary>
        /// Takes the command line arguments, fuses them with any response file that may also have
        /// been specified, and parses them.
        /// </summary>
        /// <param name="cmdlineArgs">The set of arguments supplied to the program</param>
        /// <returns></returns>
        public static CommandArguments Parse(string[] cmdlineArgs)
        {
            var arguments = new CommandArguments();

            arguments.Process(cmdlineArgs);
            return(arguments);
        }
Exemplo n.º 2
0
 /// <summary>
 /// Takes the command line arguments, fuses them with any response file that may also have
 /// been specified, and parses them.
 /// </summary>
 /// <param name="cmdlineArgs">The set of arguments supplied to the program</param>
 /// <returns></returns>
 public static CommandArguments Parse(string[] cmdlineArgs)
 {
     var arguments = new CommandArguments();
     arguments.Process(cmdlineArgs);
     return arguments;
 }