private static void TraceThread1() { Thread anotherThread = new Thread(() => AnotherClass1.Method1(5, 6, 7)); anotherThread.Start(); anotherThread.Join(); }
private static void TraceClassMethods() { MainTracer.StartTrace(); AnotherClass1.Method1(5, 6, 7); AnotherClass1.UnusualMethod(); MainTracer.StopTrace(); }