Alphashack.Graphdat.Agent.SqlTrace.Program.Main C# (CSharp) Méthode

Main() static private méthode

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