Skip to content

Instantly share code, notes, and snippets.

@sniffdk
Created October 18, 2012 08:08
Show Gist options
  • Save sniffdk/3910391 to your computer and use it in GitHub Desktop.
Save sniffdk/3910391 to your computer and use it in GitHub Desktop.
CsvHelper snippet
using( var reader = new CsvReader(new StringReader(data)))
{
while (reader.Read())
{
var rec = reader.CurrentRecord;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment