文字列全体 [4273,11] を Word にコピーしましたが、毎回各セルをループして挿入するため、非常に時間がかかります。私がやりたいことは、文字列全体 [4273,11] をMS Word テーブルに直接コピーすることです。Excel ワークシートの内容を MS Word にコピーする方法もあれば、どうにか問題が解決するのでありがたいです。
public void WriteContent(string[,] array, Word.Table oDoc)
{
// This is where I fill the Excel worksheet with the string [4273,11] array
Range range = (Range)m_worksheet.Cells[1, 1];
range = range.get_Resize(4273, 11);
// Assign the 2-d array to the Excel Range
range.set_Value(Microsoft.Office.Interop.Excel.XlRangeValueDataType.xlRangeValueDefault, array);
//This is Where I want to Paste the Excel "range" into the word document
}