C# Class DSPUtil.Trace

Logging of trace messages: Trace.Write(...) Trace messgaes go to one of the three possible outputs: - some TextWriter you preprared earlier, or - the console, or - a text file on disk. The location of the text file is set in the app's config, "trace" value.
Exibir arquivo Open project: hughpyle/inguz-DSPUtil

Public Methods

Method Description
Clear ( ) : void
Write ( string format ) : void

Write a trace message.

WriteLine ( ) : void

Write a trace newline.

WriteLine ( string format ) : void

Write a trace message and newline.

Private Methods

Method Description
TraceFile ( ) : bool

Method Details

Clear() public static method

public static Clear ( ) : void
return void

Write() public static method

Write a trace message.
public static Write ( string format ) : void
format string
return void

WriteLine() public static method

Write a trace newline.
public static WriteLine ( ) : void
return void

WriteLine() public static method

Write a trace message and newline.
public static WriteLine ( string format ) : void
format string
return void