C
CGuy
Hi,
I'm trying to implement a custom trace listener. I would like the
WriteLine method of this tracelistener to also write out information
regarding the method from which Trace was called. For example,
public void Method1()
{
Trace.WriteLine("Sample Text");
}
public void Method2()
{
Trace.WriteLine("Sample Text");
}
Executing the aboce 2 Trace.WriteLine methods should also give me the name
of the method and its signature in the trace listener
Regards,
CGuy
I'm trying to implement a custom trace listener. I would like the
WriteLine method of this tracelistener to also write out information
regarding the method from which Trace was called. For example,
public void Method1()
{
Trace.WriteLine("Sample Text");
}
public void Method2()
{
Trace.WriteLine("Sample Text");
}
Executing the aboce 2 Trace.WriteLine methods should also give me the name
of the method and its signature in the trace listener
Regards,
CGuy