@@ -212,6 +212,7 @@ public static partial class Data
212212 /// <param name="showExcel">Toggle to show excel's main window</param>
213213 /// <returns name="data">Rows of data from the Excel worksheet</returns>
214214 /// <search>office,excel,spreadsheet,ifequalreturnindex</search>
215+ [ NodeObsolete ( "ExcelInteropObsoleteNode" , typeof ( Properties . Resources ) ) ]
215216 public static object [ ] [ ] ImportExcel ( FileInfo file , string sheetName , bool readAsStrings = false , bool showExcel = true )
216217 {
217218 return Excel . ReadFromFile ( file , sheetName , readAsStrings , showExcel ) ;
@@ -258,6 +259,7 @@ public static object[][] ExportExcel(string filePath, string sheetName, int star
258259 /// <param name="writeAsString">Toggle to switch between writing Excel file as strings</param>
259260 /// <returns name="data">Rows of data from the Excel worksheet</returns>
260261 /// <search>office,excel,spreadsheet</search>
262+ [ NodeObsolete ( "ExcelInteropObsoleteNode" , typeof ( Properties . Resources ) ) ]
261263 public static object [ ] [ ] ExportToExcel ( string filePath , string sheetName , int startRow , int startColumn , object [ ] [ ] data , bool overWrite = false , bool writeAsString = false )
262264 {
263265 return ExcelWriteUtils . WriteData ( filePath , sheetName , startRow , startColumn , data , overWrite , writeAsString ) ;
0 commit comments