Mono.Debugger.Event.Breaks C# (CSharp) Method

Breaks() public method

public Breaks ( int id ) : bool
id int
return bool
        public bool Breaks(int id)
        {
            if (!IsEnabled)
                return false;

            if (group.IsSystem)
                return true;

            foreach (int thread in group.Threads) {
                if (thread == id)
                    return true;
            }

            return false;
        }