Stream Disable Message in .Net MVC Console

I get this message: a stream exited with code 0, sometimes in the output window in debug mode when starting the .net mvc C # application.

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

+4
source share
1 answer

These are not errors - these messages just tell you that the background thread has exited. Zero means that the thread has started and completed successfully.

+11
source