WriteComment() public method

public WriteComment ( string text ) : void
text string
return void
示例#1
0
 public override void WriteComment(string text)
 {
     if (_wrapped == null)
     {
         _eventCache.WriteComment(text);
     }
     else
     {
         _wrapped.WriteComment(text);
     }
 }