Browse by Tags
Sorry, but there are no more tags available to filter with.
-
-
A better way to Trace without using Console.Write, is simply to use the Trace.Write, and using a ConsoleTraceListener. This will automatically dump traces to the console. -f.
-
-
Diagnostic.Trace is a good way to handle trace without reinventing the wheel, try them, using the categories. Maybe use a categories like “verbose” or “warning” ? or simply use trace.Warn instead trace.Write… -f.
-
-
A pretty old way to debug, is to output messages in a log file. The same kind of debugging is possible in VS2003 +, de console output. And it’s possible to redirect this output when the code is compiled... -f.