.NET
tracel.txt
Associated article: Creating Trace Listeners in .NET
Tags: .NET Tools
Published source code accompanying the article by Michael Taylor in which he shows that the .NET Framework comes with powerful, extensible classes for debugging and tracing applications. Also see TRACEL.ZIP.
Creating TraceListeners in .NET
by Michael Taylor
Example 1:
<configuration>
<system.diagnostics>
<trace autoflush="false" indentsize="4">
<listeners>
<add name="listenername" type="listenertype"/>
</...


