Alexandria.Backend.Program.Main C# (CSharp) Method

Main() static private method

static private Main ( string args ) : void
args string
return void
        static void Main(string[] args)
        {
            var host = new RemoteAppDomainHost(typeof (AlexandriaBootStrapper));
            host.Start();

            Console.WriteLine("Starting to process messages");
            Console.ReadLine();
        }
Program