Skip to content

7.4 Comma Seperated Values (CSV)

Jos de Weger edited this page Feb 28, 2022 · 1 revision

Getting the data for a CSV file requires the use of the CsvAdapter. This adapter has a couple of methods for getting the data from a CSV file:

  • Sheet GetFromBase64Encoded(string base64EncodedFile, char delimiter)
  • Sheet GetFromPath(string csvPath, char delimiter)
  • Sheet GetFromStream(Stream stream, char delimiter)
Clone this wiki locally