CodeTV.PluginManager.Start C# (CSharp) Method

Start() public method

public Start ( ) : void
return void
        public void Start()
        {
            foreach (IPlugin plugin in this.plugins)
            {
                try
                {
                    plugin.Start();
                }
                catch (Exception ex)
                {
                    MessageBox.Show(string.Format(Properties.Resources.PluginException, plugin.Name, ex.ToString()));
                }
            }
        }