コード例 #1
0
ファイル: cltmconsole.cs プロジェクト: viniciustaveira/corefx
 //Overlaods - We also implement "string" since its much more effiencent and TextWriter will call this instead
 public override void Write(string strText)
 {
     CError.Write(strText);
 }
コード例 #2
0
ファイル: cltmconsole.cs プロジェクト: viniciustaveira/corefx
 //Overloads - A subclass must minimally implement the Write(Char) method.
 public override void Write(char ch)
 {
     CError.Write(ch.ToString());
 }