WriteLine() public method

public WriteLine ( String str ) : void
str String
return void
コード例 #1
0
ファイル: Console.cs プロジェクト: sjyanxin/WPFSource
 private static TextWriter MakeDebugOutputTextWriter(String streamLabel) 
 {
     TextWriter output = new __DebugOutputTextWriter(streamLabel); 
     output.WriteLine("Output redirected to debugger from a bit bucket."); 
     return TextWriter.Synchronized(output);
 }