I was wondering if there is a way to put a breakpoint in every method in a class automatically? I'm using Visual Studio 2015, and was interested in mainly a non-addon way to do it.
I have tried the "New Breakpoint
-> Function
-> MyClassName::*
" and "... -> MyNameSpace.MyClassName::*
" that I've found in other answers (How to set a breakpoint in every method in VS2010), but those didn't work. Possibly because the answers were VS2010 oriented? Idk.
I'm also trying to do this for an MVC controller, in case that changes anything.
Any suggestions?