CSVReader Class
Public Class CSVReader
Implements IEnumerable(Of String), _
IDisposable
This language is not supported or no code example is available.
public class CSVReader : IEnumerable<string>,
IDisposable
This language is not supported or no code example is available.
public ref class CSVReader : public array< IEnumerable<String^>^ >^,
public IDisposable^
This language is not supported or no code example is available.
| Name | Description | |
|---|---|---|
|
CSVReader(Stream, CSVSettings) | /// Construct a new CSV reader off a streamed source /// |
|
CSVReader(StreamReader, CSVSettings) | /// Construct a new CSV reader off a streamed source /// |
| Name | Description | |
|---|---|---|
|
ChopFile(string, string, int, CSVSettings) | /// Take a CSV file and chop it into multiple chunks of a specified maximum size. /// |
|
Deserialize<T>() | /// Deserialize the CSV reader into a generic list /// |
|
Dispose() | /// Close our resources - specifically, the stream reader /// |
|
FromFile(string, CSVSettings, Encoding) | /// Convenience function to read from a file on disk /// |
|
FromString(string, CSVSettings) | /// Convenience function to read from a string /// |
|
GetEnumerator() | /// Iterate through all lines in this CSV file /// |
|
Lines() | /// Iterate through all lines in this CSV file /// |
|
ReadAsDataTable() | /// Read this file into a data table in memory /// |