ExcelWriteCSV Method

Writes cell data into a new csv File

Definition

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

Parameters

csvFile  IFileData
File to create/overwrite
seperator  Char
Seperator to seperate cells (normally ';' or ',')
data  ListListExcelCell
List of lists of cells to write
error  String
Returns the error information if funtion fails

Return Value

Boolean
True if successful

See Also