Mono.Debugger.Event.Breaks C# (CSharp) Метод

Breaks() публичный Метод

public Breaks ( int id ) : bool
id int
Результат 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;
        }