CsvWriterWriteRecord Method

Writes a record to the CSV file.

Namespace:  Dundas.BI.Utility
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (26.1.0.1000)
Syntax
public void WriteRecord(
	params string?[] fieldValues
)

Parameters

fieldValues
Type: SystemString
The field values.
Exceptions
ExceptionCondition
ArgumentNullExceptionfieldValues is .
InvalidOperationExceptionThe TextWriter has not been instantiated. Use CsvWriter(TextWriter) constructor to create instance of this class.
Remarks
To use this method the instance of the class should be created using CsvWriter(TextWriter) constructor.
See Also