Advtools.AdvInterceptor.Program.Main C# (CSharp) Method

Main() static private method

static private Main ( string args ) : void
args string
return void
        static void Main(string[] args)
        {
            try
            {
                ShowInformation();
                Options options = ParseCommandLine(args);
                if (options == null)
                    return;
                StartServers(options);
                Pause();
            }
            catch(ApplicationException ex)
            {
                Console.WriteLine(ex.Message);
            }
        }