Guest User

Untitled

a guest
Jul 12th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. // Directory path for input and output files.
  2. string dirPath = "D:\\Download\\";
  3.  
  4. // Load your sample CSV file inside the Workbook object.
  5. Aspose.Cells.Workbook wb = new Aspose.Cells.Workbook(dirPath + "sampleConvertCSVToExcelFormats.csv");
  6.  
  7. // Save CSV file to XLSB format.
  8. wb.Save(dirPath + "outputConvertCSVToExcelFormats.xlsb", SaveFormat.Xlsb);
Add Comment
Please, Sign In to add comment