Is there any way to make a part of a label.text to be bold?
label.text
label.text = \"asd\" + string;
Would like the string
string
In ASP.NET you could do:
label.Text = string.Format("asd {0}", string);
But like everyone else says, depends on what you're using.