Created
December 14, 2010 10:17
-
-
Save pmhsfelix/740236 to your computer and use it in GitHub Desktop.
Example C# code for generating an HTML table
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"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