public sealed class CsvWriter : IDisposable
Public NotInheritable Class CsvWriter
Implements IDisposable
public ref class CsvWriter sealed : IDisposable
[<SealedAttribute>]
type CsvWriter =
class
interface IDisposable
end
CsvWriter(TextWriter, Int32, Char) | Initializes a new CsvWriter object to write CSV data without a header row. |
CsvWriter(String, Int32, Char, Encoding) | Initializes a new CsvWriter object to write a CSV file without a header row. |
CsvWriter(TextWriter, IEnumerableString, Boolean, Char) | Initializes a new CsvWriter object with the column names for the header row to be written. |
CsvWriter(String, IEnumerableString, Boolean, Char, Encoding) | Initializes a new CsvWriter object with the column names for the header row to be written. |
Dispose | Releases the resources. (Closes the CSV file.) |
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) |
ToString | Returns a string that represents the current object. (Inherited from Object) |
WriteRecord | Writes the contents of Record to the CSV file and then sets all fields of Record to Empty. (The first time it is called, the header row may also be written.) |