public HtmlCodeFormatter(TextWriter writer, IDictionary<Address, Procedure> procedureMap) : base(new HtmlFormatter(writer)) { this.formatter = (HtmlFormatter)InnerFormatter; this.formatter.Terminator = "<br />" + Environment.NewLine; this.procedureMap = procedureMap; }
public void Setup() { sb = new StringWriter(); hf = new HtmlFormatter(sb); }