0

Today while i was debugging my code step by step i encountered one message while debugging my ASP.net web api.

Unknown Debugging Message

I had never encountered any such message. What is this message and why it came, what is the main purpose of it. Can anybody explain.

Mohit
  • 2,189
  • 4
  • 22
  • 40
  • It will only show when the compiler skip some object or method, and it's normal in step-over button `(F10)`, It's also occurred when you are not allowed to Step-Into `(F11)` in object or method. – Onel Sarmiento Nov 11 '14 at 04:47

1 Answers1

0

Visual Studio is asking that its going to skip some code and debug your program. And this message is to ask that do you need to be informed whenever this happens.

If you want to be informed in future, you can select "Yes" otherwise select "No"

You can simply ignore this and continue.

tarzanbappa
  • 4,930
  • 22
  • 75
  • 117