DefaultTraceListener.WriteLine(String) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
캐리지 리턴과 줄 바꿈(\r\n)이 다음에 오도록 OutputDebugString
함수와 Log(Int32, String, String) 메서드에 출력합니다.
public:
override void WriteLine(System::String ^ message);
public override void WriteLine (string? message);
public override void WriteLine (string message);
override this.WriteLine : string -> unit
Public Overrides Sub WriteLine (message As String)
매개 변수
- message
- String
OutputDebugString
과 Log(Int32, String, String)에 쓸 메시지입니다.
예제
다음 코드 예제에서는 함수의 결과 형식을 지정하고 메서드를 WriteLine(String) 사용하여 메시지 DefaultTraceListener의 마지막 부분을 에 씁니다.
// Compute the next binomial coefficient.
// If an exception is thrown, quit.
decimal result = CalcBinomial(possibilities, iter);
if (result==0) {return;}
// Format the trace and console output.
string binomial = String.Format("Binomial( {0}, {1} ) = ", possibilities, iter);
defaultListener.Write(binomial);
defaultListener.WriteLine(result.ToString());
Console.WriteLine("{0} {1}", binomial, result);
' Compute the next binomial coefficient.
' If an exception is thrown, quit.
Dim result As Decimal = CalcBinomial(possibilities, iter)
If result = 0 Then Return
' Format the trace and console output.
Dim binomial As String = String.Format( _
"Binomial( {0}, {1} ) = ", possibilities, iter)
defaultListener.Write(binomial)
defaultListener.WriteLine(result.ToString)
Console.WriteLine("{0} {1}", binomial, result)
설명
기본 줄 종결자는 캐리지 리턴과 줄 바꿈(\r\n) 조합입니다.
Win32 OutputDebugString
디버깅 함수에 대한 자세한 내용은 플랫폼 SDK 또는 MSDN을 참조하세요.
이 메서드를 설정 합니다 NeedIndent 속성을 true
입니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET