Click or drag to resize

Csv Constructor

Creates a new CSV reader for the specified file.

Namespace: Austra.Library
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.8.0+e1037fa8802b3ff162e26559d763b73334940b70
Syntax
C#
public Csv(
	string fileName
)

Parameters

fileName  String
Path to the CSV file.
Remarks
If the provided file name is not an absolute path, the constructor will attempt to locate the file in the following order:
  1. The user documents folder.
  2. The subfolder "austra" inside the user documents folder.
  3. The current folder.
If no extension is provided in the file name, the constructor will also attempt to find a file with the same name and a ".csv" extension in the same locations.
See Also