CSVReader Methods

The following tables list the members exposed by the CSVReader type.

Methods
 
Name Description
Public method Static ChopFile(string, string, int, CSVSettings) /// Take a CSV file and chop it into multiple chunks of a specified maximum size. ///
Public method Deserialize<T>() /// Deserialize the CSV reader into a generic list ///
Public method Dispose() /// Close our resources - specifically, the stream reader ///
Public method Static FromFile(string, CSVSettings, Encoding) /// Convenience function to read from a file on disk ///
Public method Static FromString(string, CSVSettings) /// Convenience function to read from a string ///
Public method GetEnumerator() /// Iterate through all lines in this CSV file ///
Public method Lines() /// Iterate through all lines in this CSV file ///
Public method ReadAsDataTable() /// Read this file into a data table in memory ///
Top

In this article

Definition