fitSharp.Machine.Application.Shell.Run C# (CSharp) Method

Run() public method

public Run ( IList commandLineArguments ) : int
commandLineArguments IList
return int
        public int Run(IList<string> commandLineArguments)
        {
            try {
                ParseArguments(commandLineArguments);
                return !memory.HasItem<AppDomainSetup>()
                           ? RunInCurrentDomain()
                           : RunInNewDomain(memory.GetItem<AppDomainSetup>(), commandLineArguments);
            }
            catch (System.Exception e) {
                progressReporter.Write(string.Format("{0}\n", e));
                return 1;
            }
        }

Same methods

Shell::Run ( ) : void