File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
libraries/radspreadprocessing/formats-and-conversion/csv Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ __Example 1__ shows how to import a CSV file using a __FileStream__. The code as
3434 }
3535
3636 Workbook workbook;
37- IWorkbookFormatProvider formatProvider = new CsvFormatProvider();
37+ CsvFormatProvider formatProvider = new CsvFormatProvider();
3838
3939 using (Stream input = new FileStream(fileName, FileMode.Open))
4040 {
@@ -56,7 +56,7 @@ __Example 2__ demonstrates how to export an existing Workbook to a CSV file. The
5656 workbook.Worksheets.Add();
5757
5858 string fileName = "SampleFile.csv";
59- IWorkbookFormatProvider formatProvider = new CsvFormatProvider();
59+ CsvFormatProvider formatProvider = new CsvFormatProvider();
6060
6161 using (Stream output = new FileStream(fileName, FileMode.Create))
6262 {
You can’t perform that action at this time.
0 commit comments