The following code: static void Main(string[] args) { TraceSource ts = new TraceSource("MyApplication"); ts.Switch = new SourceSwitch("MySwitch"); ts.Switch.…
c# .net system.diagnostics tracesourceAnyone knows the difference between System.Diagnostic.Trace and System.Diagnostic.TraceSource classes? I've been using Trace for most of …
.net logging system.diagnostics tracesource