Is this the best way to get the current paragraphIndex?
var paraIndex = builder.CurrentSection.ChildNodes.Cast<Node>().Count(node => node.NodeType == NodeType.Paragraph);
I need the index in order to go back to the beginning of the specified paragraph later using the MoveToParagraph function.