Barista.Program.Main C# (CSharp) Method

Main() static private method

static private Main ( string args ) : void
args string
return void
        static void Main(string[] args)
        {
            PrepareQueues.Prepare("msmq://localhost/LearningRhinoESB.E5.Barista", QueueType.Standard);

            Console.WriteLine("Barista: Ready for drink preparation ...");

            var host = new DefaultHost();
            host.Start<BaristaBootStrapper>();

            Console.ReadLine();
        }
Program