ramco1917 says:
htmlTable.Append(
"<td >"
+ colum.Snippet.Tags +
"</td>"
);
Its returning as List. So you need to convert it to string with comma separated string. Use String.Join.
htmlTable.Append("<td >" + string.Join(",", colum.Snippet.Tags.ToArray()) + "</td>");