var WordApp = new Word.Application();
var WordDocument = WordApp.Documents.Open(@"C:\\contract.docx");
WordReplace("{seller_name}",
dataGridView1.CurrentCell.OwningRow.Cells[1].Value.ToString(), WordDocument);
我正在使用此代码在 word 文档中进行替换。我怎样才能更换不是 1 次而是多次?我需要用 word 替换所有 {seller_name}。