Excelファイルの最初の行を読み取るために使用するコードはこれです。保存する前にその行を文字列変数に保存する方法は? Excelドキュメントを保存する方法は?
string ExcelFile = Application.StartupPath + @"\SurveyLinks.xlsx";
Excel.Application ExcelApp = new Excel.Application();
Excel.Workbook ExcelWorkBook = ExcelApp.Workbooks.Open(ExcelFile);
Excel._Worksheet ExcelWorkSheet = ExcelWorkBook.Sheets[1];
Excel.Range ExcelRange = (Excel.Range)ExcelWorkSheet.Application.Rows[1, Type.Missing];
ExcelRange.Select();
//string SurveyLink = ExcelRange.Cells[1,1].Value2.ToString();
ExcelRange.Delete(Excel.XlDirection.xlUp);
ExcelWorkBook.Close(true);
ExcelApp.Quit();
MessageBox.Show(SurveyLink);
MessageBox.Show("Done!");