I've a feedback message to get display in screen in my C# file. I stored the message in local constant string.
Have the requirement to bold few words in the message like below,
Important Notice : This feature is unavailable after 30-Oct. Please contact xyz@abc.com
Above message, "Important Notice" should be bold. Is there any way to design string like
private const string HelpText = "<b>Balloon</b> <br />A Balloon is the lump sum amount";
Edited : I'm using WinForms. On load message has to display
` in your message suggests you also want to insert a linebreak. Your text does not say anything about that. While the solution will probably be generic enough to cover this, as well, you may want to make sure your example description and code match. – O. R. Mapper Aug 10 '15 at 07:16
. its a typo....all i concern is Bolding string – Vino Spartan Aug 10 '15 at 07:26