Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I don't think it has anything to do with your code. I had the same issue and used this post to resolve my issue:</p> <p><a href="https://stackoverflow.com/questions/6100871/visual-studio-breakpoint-warning">Visual Studio Breakpoint Warning</a></p> <ul> <li>The code the debugger is using is different from the code that the application is running <strong>(this was my issue)</strong></li> <li>The pdb file that the debugger is using is different from the code that the application is running</li> <li>The code the application is running has been optimized and debug information has been stripped out.</li> <li>The code in which you have breakpoints on hasn't been loaded into the process yet (assuming the things above are not the culprits)</li> <li>If you are attaching the debugger, pay attention to what .net framework it's attaching to (i've had issues with it using .net 4 when code was all .net 2.0)</li> <li>The assembly you have is also in the GAC. This might happen if say you installed your program so you could debug it, but the installer put the dll in the GAC.</li> <li>Remove the reference and re-add it. Typically this occurs when the project that is referenced is not in the solution, and VS will copy the dll from the bin directory of another project. You will know this was the issue when you try to re-add the reference, and can't find the project</li> <li>Remove all break points in the program</li> </ul> <p>When all else fails, restart the computer, start up the project &amp; Clean / Rebuild and everything should be fine.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload