1
Answer

How to append the BoldText and NormalText in C#StringBuilder

How to append the bold text through StringBuilder in C#
 
 
StringBuilder message = new StringBuilder();
message.Append("\n");
message.Append("Hello");
message.Append("<Bold>");
message.Append("World");
message.Append("</Bold>");
 
Answers (1)