Manos.Tool.Driver.Server C# (CSharp) Method

Server() private static method

private static Server ( IList args ) : int
args IList
return int
        private static int Server(IList<string> args)
        {
            Driver d = new Driver ();

            try {
                d.RunServer (args);
            } catch (Exception e) {
                Console.WriteLine ("error while serving application:");
                Console.WriteLine (e);
                return 1;
            }

            return 0;
        }