AmaknaProxy.Engine.View.MainForm.LoadInjector C# (CSharp) Method

LoadInjector() private method

private LoadInjector ( ) : void
return void
        private void LoadInjector()
        {
            try
            {
                Injector = new AutoInjector("Dofus", Path.Combine(System.Windows.Forms.Application.StartupPath, "AmaknaProxy.Hooks.dll"), (ContainerLogger)Logger);
                Injector.Start();
                this.Invoke((MethodInvoker)delegate { ToolStripMenuItem_Proxy.Text = "Proxy: Activé"; });
            }
            catch (Exception ex)
            {
                Logger.Error(" (LoadInjector) " + ex.Message);
            }
        }