Skip to content

Instantly share code, notes, and snippets.

@angelovstanton
Created January 6, 2017 20:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save angelovstanton/e5315be9219d8873be9e091bcfea5ceb to your computer and use it in GitHub Desktop.
Save angelovstanton/e5315be9219d8873be9e091bcfea5ceb to your computer and use it in GitHub Desktop.
private static void CreateReportAllTime()
{
TextWriter textWriter = new StreamWriter(filePath);
var csv = new CsvWriter(textWriter);
csv.WriteRecords(articlesInfos.OrderByDescending(x => x.Views));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment