段落を取得するまで繰り返し処理しているドキュメントがあります。これらの段落ごとに、新しいドキュメントを作成して保存する必要があります。ソース ドキュメントから新しいドキュメントに段落を追加する方法がわかりません。
foreach (var p in paragraphsFromSourceDocument)
{
using (var memoryStream = new MemoryStream())
{
var doc = WordprocessingDocument.Create(memoryStream, WordprocessingDocumentType.Document);
doc.AddMainDocumentPart();
// Create the Document DOM.
doc.MainDocumentPart.Document = new Document();
doc.MainDocumentPart.Document.Body = new Body();
//Add the paragraph 'p' to the Body here:
// HOW ?????????
doc.MainDocumentPart.Document.Save();
}
}