Creates a new instance of the CSVDataSet class representing a file that does not yet exist.

Namespace: ININ.IceLib.Configuration.Dialer.DataTypes
Assembly: ININ.IceLib.Dialer (in ININ.IceLib.Dialer.dll) Version: 0.0.0.0 (22.3.0.208)

Syntax

C#
public CSVDataSet(
	string filePath,
	IEnumerable<DBColumn> fields,
	char delimiter
)
Visual Basic
Public Sub New ( _
	filePath As String, _
	fields As IEnumerable(Of DBColumn), _
	delimiter As Char _
)

Parameters

filePath
Type: System..::..String
The full path to the csv file.
fields
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'DBColumn>)>)>
The fields to create in the new file
delimiter
Type: System..::..Char
character delimiter

See Also