Ejemplo n.º 1
0
 public DocumentBuilder(BlockCollection newCollection)
 {
     current = newCollection ?? throw new ArgumentNullException(nameof(newCollection));
 }
Ejemplo n.º 2
0
 public DocumentBuilder Header(string title)
 {
     current = current.AddChild(new Header(title));
     return(this);
 }