wmib.Instance.Init C# (CSharp) Méthode

Init() public méthode

Create this instance
public Init ( ) : void
Résultat void
        public void Init()
        {
            thread = new Thread(Exec);
            this.IsActive = true;
            thread.Name = "Instance:" + Nick;
            Core.ThreadManager.RegisterThread(thread);
            thread.Start();
        }