Exemplo n.º 1
0
 public override void VisitParamRef(ParamRefComment comment, StringBuilder context)
 {
     context.AppendFormat("<paramref name=\"{0}\" />", comment.Name);
 }
Exemplo n.º 2
0
 public override void VisitParamRef(ParamRefComment comment, CommentRendererContext context)
 {
     context.Builder.AppendRaw("<i>");
     context.Builder.AppendEncoded(comment.Name);
     context.Builder.AppendRaw("</i>");
 }
Exemplo n.º 3
0
 /// <summary>
 /// Visits a <c>paramref</c> comment.
 /// </summary>
 /// <param name="comment">The comment.</param>
 /// <param name="context">The context.</param>
 public virtual void VisitParamRef(ParamRefComment comment, TContext context)
 {
 }