public static void Main()
CsvFileDescription outputFileDescription = new CsvFileDescription
FirstLineHasColumnNames = true,
var things = new []{new {bob = 1, adam="Awesome"}, new {bob = 2, adam="totally"}};
MemoryStream stream = new MemoryStream();
var textWriter = new StreamWriter(stream);
Console.WriteLine(stream.Length);
CsvContext cc = new CsvContext();
cc.Write(things, textWriter);
Console.WriteLine(stream.Length);