WriteComment() public abstract method

public abstract WriteComment ( CommentType commentType, string content, CommentReference refs ) : void
commentType CommentType
content string
refs CommentReference
return void
コード例 #1
0
 public override void WriteComment(CommentType commentType, string content, CommentReference[] refs)
 {
     decoratedWriter.WriteComment(commentType, content, refs);
 }
コード例 #2
0
ファイル: ITokenWriter.cs プロジェクト: z3nth10n/ILSpy-CMD
 public override void WriteComment(CommentType commentType, string content)
 {
     decoratedWriter.WriteComment(commentType, content);
 }