CSVDataTable Class

/// Code to assist in working with DataTable objects and CSV sources ///
Public Class CSVDataTable
This language is not supported or no code example is available.
public static class CSVDataTable
This language is not supported or no code example is available.
public ref class CSVDataTable 
This language is not supported or no code example is available.
public class CSVDataTable
This language is not supported or no code example is available.
Methods
 
Name Description
Public method Static FromFile(string, CSVSettings) /// Read in a single CSV file into a datatable in memory ///
Public method Static FromStream(StreamReader, CSVSettings) /// Read in a single CSV file into a datatable in memory ///
Public method Static FromString(string, CSVSettings) /// Convert a CSV file (in string form) into a data table ///
Public method Static WriteToFile(this DataTable, string, CSVSettings) /// Write a data table to disk at the designated file name in CSV format ///
Public method Static WriteToStream(this DataTable, StreamWriter, CSVSettings) /// Write the data table to a stream in CSV format ///
Public method Static WriteToString(this DataTable, CSVSettings) /// Write a DataTable to a string in CSV format ///
Top

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8

In this article

Definition