Visual C# 2008 Express doesn't give me any options for break points besides creating/deleting them
I'm not sure why this is, but all I get is a 'create brea开发者_JAVA技巧kpoint' and 'delete breakpoint'. There is no option for a 'when hit' or something else like that.
Any ideas why?
This functionality is not provided in the Express edition of Visual Studio. You can have a look here for details.
I'm not quite sure where BP info is stored, but this did the trick for me (C# 2010 Express):
- close the IDE
- delete the *.vshost.exe (see EXE/DLL output folder)
- delete the *.SUO file
- now re-open the IDE and load the project again.
Notes:
- The *.vshost.exe might need to be terminated the hard way before you can delete it.
- Deleting the *.SUO file also takes away some of the IDE project group settings, such as files opened, project tree folding, etc.
精彩评论