ExcelReadCSV Method

Reads a csv file and returns a list of lists of cells (one list of cells per row)

Definition

Namespace: PCBI.Automation.IO
Assembly: PCB-Investigator (in PCB-Investigator.exe) Version: 0
C#
public static List<List<ExcelCell>> ReadCSV(
	IFileData csvFile,
	out string error,
	char seperator = '?'
)

Parameters

csvFile  IFileData
CSV File to read
error  String
Returns the error information if funtion fails
seperator  Char  (Optional)
Used seperator in the csv or '?' to automatically recognize ',' or ';'

Return Value

ListListExcelCell
List of lists of cells

See Also