Is there a way to prevent Visual Studio from printing Thread exited statements into the Output Window?

C#.NetVisual Studio

C# Problem Overview


Such as:

The thread '<No Name>' (0x16b4) has exited with code 0 (0x0).

When I am using the Output Window for my own data, the threading messages clutters it.

C# Solutions


Solution 1 - C#

Yes, this is easy to do. Just right-click the Output window and untick the "Thread Exit Messages" option:

enter image description here

If you want the setting to apply to every future project instead of just the current one then use Tools > Options > Debugging > Output Window > Thread Exit Messages = Off.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJoan VengeView Question on Stackoverflow
Solution 1 - C#Hans PassantView Answer on Stackoverflow