4

I get this message: the thread has exited with code 0 sometimes in the output window in debug mode when running a .net mvc c# application.

The application still works after these messages, it does not crash and there is no reason to crash, any ideas on what this mean?

Kheldar
  • 5,361
  • 3
  • 34
  • 63
davitz38
  • 377
  • 1
  • 2
  • 9

1 Answers1

12

Those are not errors -- those messages are simply telling you that a background thread has exited. Zero means the thread ran and exited successfully.

George Johnston
  • 31,652
  • 27
  • 127
  • 172