コード例 #1
0
 //Overloads - We also implement "string" since its much more efficient and TextWriter will call this instead
 public override void Write(string strText)
 {
     CError.Write(strText);
 }
コード例 #2
0
 //Overloads - A subclass must minimally implement the Write(Char) method.
 public override void Write(char ch)
 {
     CError.Write(ch.ToString());
 }