Alphashack.Graphdat.Agent.SqlTrace.Program.Main C# (CSharp) Method

Main() static private method

The main entry point for the application.
static private Main ( ) : void
return void
        static void Main()
        {
            var servicesToRun = new ServiceBase[]
                                    {
                                        new SqlTraceService()
                                    };
            ServiceBase.Run(servicesToRun);
        }
Program