示例#1
0
 //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
 //Overloads - A subclass must minimally implement the Write(Char) method.
 public override void Write(char ch)
 {
     CError.Write(ch.ToString());
 }