I have 40-50 methods in a class, I want to add breakpoints to all of them. Can I add breakpoints to all of them at once?
There's a class breakpoint add-in you could try, or you could use a replace expression to add a __debugbreak() at the start of each method.