Skip to content

Instantly share code, notes, and snippets.

@eranbetzalel
eranbetzalel / DelimitedFileWriter.cs
Created April 12, 2013 12:58
Simple implementation of CSV (or any other character delimited file) writer.
class Car
{
public int CarId { get; set; }
public DateTime ManufactureDate { get; set; }
public decimal SomeDecimal { get; set; }
}
class DelimitedFileWriterExample
{
static void Main()