Вам понадобится метод, похожий на этот:
public static IDisposable BeginTable(this HtmlHelper html, ...)
{
// write the start of the table here
return new EndTableWriter();
}
Где EndTableWriter
выглядит примерно так:
private class EndTableWriter : IDisposable
{
public void Dispose()
{
// write the end of the table here
}
}