在用Visual Studio时遇到这个报错。原因:访问了非法的内存地址。
这个问题不应该被忽略,通常是代码有bug。
解决办法:
VS2013: 菜单->Debug->Exceptions
VS2015: 菜单->Debug->Windows->Exception Settings
确保所有项都打勾,然后调试运行,出现第一个报错的地方就是非法访问内存的bug,改掉它。
The way I just found the problem was that in Visual Studio I went to Debug->Exceptions, and checked everything in the first column. Then run/debug your unit tests, and it will throw an exception on the line that the problem is at. That's where you need to debug/fix it.
For visual studio 2015: Debug->Windows->Exception Settings