CsvFile.Load method

Version 0.0.2
.NET Framework 4.7
Namespace Skybrud.Csv
Assembly Skybrud.Csv.dll

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.

Returns

An instance of CsvFile.

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.

Returns

An instance of CsvFile.

Load(string, Encoding)

Static

Loads the CSV file at the specified path.

public static CsvFile Load(string path, Encoding encoding)

Parameters

path String

The path to the CSV file.

encoding Encoding

The encoding of the CSV file.

Returns

An instance of CsvFile.

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.

Returns

An instance of CsvFile.

Load(Stream)

Static

Loads a new CSV file from the specified stream.

public static CsvFile Load(Stream stream)

Parameters

stream Stream

The stream.

Returns

An instance of CsvFile.

Load(Stream, CsvSeparator)

Static

Loads a new CSV file from the specified stream.

public static CsvFile Load(Stream stream, CsvSeparator separator)

Parameters

stream Stream

The stream.

separator CsvSeparator

The separator to

Returns

An instance of CsvFile.

Load(Stream, Encoding)

Static

Loads a new CSV file from the specified stream.

public static CsvFile Load(Stream stream, Encoding encoding)

Parameters

stream Stream

The stream.

encoding Encoding

The encoding of the CSV file.

Returns

An instance of CsvFile.

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.

Returns

An instance of CsvFile.