Csv Class |
public class Csv
The Csv type exposes the following members.
| Name | Description | |
|---|---|---|
| Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) | |
| GetHashCode | Serves as the default hash function. (Inherited from Object) | |
| GetType | Gets the Type of the current instance. (Inherited from Object) | |
| ReadAll | Reads all rows from the configured CSV file and returns all values as an array of doubles, along with the number of columns per row. Applies any configured filtering and handles headers as specified. | |
| ReadAll(Int32) | Reads all rows from the configured CSV file and returns all values as an array of doubles, along with the number of columns per row. Applies any configured filtering and handles headers as specified. | |
| ReadColumnT(Int32) | Reads all lines from the configured CSV file. | |
| ReadColumnT(String) | Reads all lines from the configured CSV file. | |
| ToString | Returns a string that represents the current object. (Overrides ObjectToString) | |
| WithFilter(Int32, String) | Instructs the reader to only return lines where the value in the specified column matches the provided value. | |
| WithFilter(String, String) | Instructs the reader to only return lines where the value in the specified column matches the provided value. This overload implies that the CSV file has a header. | |
| WithFormat | Change the format provider for this CSV file. This is used when parsing numeric values. | |
| WithHeader | Mark this CSV file as having a header line. The first line will be ignored when reading. | |
| WithSeparator | Change the separator character for this CSV file. |