Today I discovered a peculiar bug in Visual Studio 2015. If you put in a very long string:
string strings = @”<very long string at least 80000 characters>”;
it does not stop on Breakpoints anymore:)
Visual Studio 2015 does not throw any errors. It just stops stopping on Breakpoints.
The solution was obviously to put the string in a another file and read it into the program, but still it was a rather fun bug to track down.