Questions tagged [tracesource]
61 questions
-1
votes
1 answer
Using TraceSource from a class library and using it in other components of the same executable
I have created a library for event logging utilities using system.Diagnostics like the one below:
public class Logger
{
static TraceSource ts = new TraceSource("TestApp");
public void Log(string message)
{
…

user3375881
- 19
- 2