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

RemoveThread() public method

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

            threads.Remove (id);
        }