C# 클래스 xLogger.Logger

Provides a logging class. Creates a timestamped log file.
파일 보기 프로젝트 열기: xwcg/SpawnBot

공개 메소드들

메소드 설명
Write ( string txt ) : void

Write text to console and logfile

Write ( string txt, ConsoleColor clr ) : void

Write text to console and logfile

WriteLine ( string txt ) : void

Write line to console and logfile

WriteLine ( string txt, ConsoleColor clr ) : void

Write line to console and logfile

메소드 상세

Write() 공개 정적인 메소드

Write text to console and logfile
public static Write ( string txt ) : void
txt string Text
리턴 void

Write() 공개 정적인 메소드

Write text to console and logfile
public static Write ( string txt, ConsoleColor clr ) : void
txt string Text
clr ConsoleColor Text color (for console window)
리턴 void

WriteLine() 공개 정적인 메소드

Write line to console and logfile
public static WriteLine ( string txt ) : void
txt string Line text
리턴 void

WriteLine() 공개 정적인 메소드

Write line to console and logfile
public static WriteLine ( string txt, ConsoleColor clr ) : void
txt string Line text
clr ConsoleColor Line color (for console window)
리턴 void