Mono.Debugger.ThreadGroup.AddThread C# (CSharp) Method

AddThread() public method

public AddThread ( int id ) : void
id int
return void
        public void AddThread(int id)
        {
            if (IsSystem)
                throw new InvalidOperationException ();

            if (!threads.Contains (id))
                threads.Add (id, true);
        }