KonfDB.Infrastructure.Utilities.CommandArgs.CommandArgs C# (CSharp) Method

CommandArgs() public method

public CommandArgs ( IEnumerable args ) : System
args IEnumerable
return System
        public CommandArgs(IEnumerable<string> args)
        {
            IEnumerable<string> enumerable = args as string[] ?? args.ToArray();
            _command = String.Join(" ", enumerable);
            Parse(enumerable);
        }

Same methods

CommandArgs::CommandArgs ( string command ) : System