Net Core: How to Convert TagBuilder to String in C#?
问题 Is there a native way to convert Tagbuilder to String in Net Core? This only is for ASP Net 5. Convert IHtmlContent/TagBuilder to string in C# Convert value of TagBuilder into a String I think Microsoft had a replacement function for this in Net Core public static string GetString(IHtmlContent content) { using (var writer = new System.IO.StringWriter()) { content.WriteTo(writer, HtmlEncoder.Default); return writer.ToString(); } } 回答1: The same WriteTo method is available in aspnetcore. You