.Net library providing extension method for collection that allow generating latex tables.
var persons = new List<MockPerson>()
{
new MockPerson("John", "Smith", 18),
new MockPerson("John", "Carter", 20)
};
var latex = persons.ToLatex();
\begin{table}
\begin{tabular}{|c|c|c|}
\hline
John & Smith & 18 \\
\hline
John & Carter & 20 \\
\hline
\end{tabular}
\end{table}
Feel free to make pull request and add something or just create issue with question / suggestion for improvement / report bug.