I have a partial class split into 5 files of various names. I need to step into the code of one of the methods, but the debugger seems to always jump over them. Every other line works fine (including the constructor for that class), but the methods in the class all get skipped over. I've tried:
- Cleaning the solution
- Deleting the
.sou
files - Deleting the
bin
andobj
folders - Restarting Visual Studio
- Restarting my machine
- All of the above again, several times.
I can only guess that the debugger has trouble with partial classes in general. Is there some workaround for this other than moving all of the code into one file?