wmib.Instance.Init C# (CSharp) Method

Init() public method

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