Open this page in the API Guide

CsvWriter.WriteRecord 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 (25.2.0.1000)
Syntax
public void WriteRecord(
	params string?[] fieldValues
)

Parameters

fieldValues
Type:System.String[]
The field values.
Exceptions
ExceptionCondition
ArgumentNullExceptionfieldValues is null.
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