C# 클래스 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.
파일 보기 프로젝트 열기: hughpyle/inguz-DSPUtil

공개 메소드들

메소드 설명
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.

비공개 메소드들

메소드 설명
TraceFile ( ) : bool

메소드 상세

Clear() 공개 정적인 메소드

public static Clear ( ) : void
리턴 void

Write() 공개 정적인 메소드

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

WriteLine() 공개 정적인 메소드

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

WriteLine() 공개 정적인 메소드

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