C# Word如何获取新行引用

C# Word如何获取新行引用,c#,office-interop,C#,Office Interop,我陷入了使用Interop.Word API向表中添加新行的困境 我的代码是 Microsoft.Office.Interop.Word.Table tableCopy = Doc.Tables.Add(pText.Range, 1, 1, ref missing, ref missing); Microsoft.Office.Interop.Word.Row row= tableCopy.Rows.Add(ref missing); 代码运行正常,但每次行都为null,而不是其中的新行引

我陷入了使用Interop.Word API向表中添加新行的困境

我的代码是

Microsoft.Office.Interop.Word.Table tableCopy = Doc.Tables.Add(pText.Range, 1, 1, ref missing, ref missing); 
Microsoft.Office.Interop.Word.Row  row= tableCopy.Rows.Add(ref missing);
代码运行正常,但每次行都为null,而不是其中的新行引用

如果你能在这方面帮助我的话。。 谢谢