iTextSharp.text.html.HtmlWriter.WriteComment C# (CSharp) Метод

WriteComment() защищенный Метод

protected WriteComment ( String comment ) : void
comment String
Результат void
        protected void WriteComment(String comment) {
            AddTabs(2);
            os.Write(BEGINCOMMENT, 0, BEGINCOMMENT.Length);
            Write(comment);
            os.Write(ENDCOMMENT, 0, ENDCOMMENT.Length);
        }