1
worksheet.Cells[1,2] = "MSC"; //Editing the file
worksheet.Cells[1,1].Style.Font.Bold = true;
theWorkbook.Save(); //Saving The file it throws Read only file Exception
當我使用這段代碼出現異常時告訴我,該文件是隻讀的,我必須從它 保存一個新的副本,如果我使用如何在不保存文件的情況下將更改保存在C#上的現有Excel文件中?
theWorkbook.Close(misValue, misValue, misValue);
它彈出一個消息窗口來保存文件中的新副本,並且我想編輯文件並將其保存到現有文件中