Load(string)
Static
Loads the CSV file at the specified path
public static CsvFile Load(string path)
Parameters
path
String
The path to the CSV file.
Load(string, CsvSeparator)
Static
Loads the CSV file at the specified path
.
public static CsvFile Load(string path, CsvSeparator separator)
Parameters
path
String
The path to the CSV file.
separator
CsvSeparator
The separator used in the CSV file.
Load(string, Encoding)
Static
Loads the CSV file at the specified path
.
public static CsvFile Load(string path, Encoding encoding)
Load(string, CsvSeparator, Encoding)
Static
Loads the CSV file at the specified path
.
public static CsvFile Load(string path, CsvSeparator separator, Encoding encoding)
Parameters
path
String
The path to the CSV file.
separator
CsvSeparator
The separator used in the CSV file.
encoding
Encoding
The encoding of the CSV file.
Load(Stream)
Static
Loads a new CSV file from the specified stream
.
public static CsvFile Load(Stream stream)
Parameters
stream
Stream
The stream.
Load(Stream, CsvSeparator)
Static
Loads a new CSV file from the specified stream
.
public static CsvFile Load(Stream stream, CsvSeparator separator)
Load(Stream, Encoding)
Static
Loads a new CSV file from the specified stream
.
public static CsvFile Load(Stream stream, Encoding encoding)
Load(Stream, CsvSeparator, Encoding)
Static
Loads a new CSV file from the specified stream
.
public static CsvFile Load(Stream stream, CsvSeparator separator, Encoding encoding)
Parameters
stream
Stream
The stream.
separator
CsvSeparator
The separator used in the CSV file.
encoding
Encoding
The encoding of the CSV file.