Skip to content

Instantly share code, notes, and snippets.

@derans
Created September 23, 2012 22:12
Show Gist options
  • Save derans/3773224 to your computer and use it in GitHub Desktop.
Save derans/3773224 to your computer and use it in GitHub Desktop.
Column Helper Method
private static ExcelColumnDefinition Column(Expression<Func<SampleInfo, object>> member, string format = null, string header = null)
{
return ExcelColumnDefinition.Create(member, format, header);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment