Skip to content

Instantly share code, notes, and snippets.

@pmhsfelix
Created December 14, 2010 10:17
Show Gist options
  • Save pmhsfelix/740236 to your computer and use it in GitHub Desktop.
Save pmhsfelix/740236 to your computer and use it in GitHub Desktop.
Example C# code for generating an HTML table
"html"._(
"body"._(
"table"._(
"tr"._(
from colName in _colNames
select "th"._(colName)),
from e in _seq
select "tr"._(
from f in _colFuncs
select "td"._( f(e))))))
.Save(name);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment