CsvHelpers.

WriteRecords<T>(FilePath, List<T>, CsvHelperSettings) Method

Summary

Writes the records to the speficed file using automap and settings.
Assembly
Cake.CsvHelper.dll
Namespace
Cake.CsvHelper
Containing Type
CsvHelpers

Syntax

public void WriteRecords<T>(FilePath csvFile, List<T> records, CsvHelperSettings settings)

Type Parameters

Name Description
T The record type.

Parameters

Name Type Description
csvFile FilePath The CSV file to write.
records List<T> The records to write.
settings CsvHelperSettings The settings.

Return Value

Type Description
void