CSVWriter Class
Public Class CSVWriter
Implements IDisposable
This language is not supported or no code example is available.
public class CSVWriter : IDisposable
This language is not supported or no code example is available.
public ref class CSVWriter : public IDisposable^
This language is not supported or no code example is available.
| Name | Description | |
|---|---|---|
|
CSVWriter(Stream, CSVSettings) | /// Construct a new CSV writer to produce output on the enclosed stream /// |
|
CSVWriter(StreamWriter, CSVSettings) | /// Construct a new CSV writer to produce output on the enclosed StreamWriter /// |
| Name | Description | |
|---|---|---|
|
Dispose() | /// Close our resources - specifically, the stream reader /// |
|
Serialize<T>(IEnumerable<T>) | /// Serialize a list of objects to CSV using this writer /// |
|
Write(DataTable) | /// Write the data table to a stream in CSV format /// |
|
WriteLine(IEnumerable<Object>) | /// Write a single line to this CSV /// |