I have a console application in C # that writes a lot to the console (using Trace ). Some of the files that it registers are a compressed representation of a network message (therefore, many of them are displayed as fake non-alphabetic characters).
I get system sounds every time the application is running. Is it possible that some kind of "text" that I write to the console causes them?
(By system sound, I mean the woofer inside the PC case, and not any WAV sound scheme)
If so, is there a way to disable it for my application? I want to be able to output any possible text without being interpreted as a sound request.
source share