Example #1
0
        public new async Task <bool> Remove(BreakPoint item)
        {
            if (debugger != null && item is LiveBreakPoint)
            {
                await debugger.RemoveAsync(item as LiveBreakPoint);
            }

            return(base.Remove(item));
        }