How to append the bold text through StringBuilder in C#
| StringBuilder message = new StringBuilder(); message.Append("\n"); message.Append("Hello"); message.Append(" message.Append("World"); message.Append(""); |
| StringBuilder message = new StringBuilder(); message.Append("\n"); message.Append("Hello"); message.Append(" message.Append("World"); message.Append(""); |
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Amit GuptaPosted Jul 13, 2017, 7:07 AM