Hi there,i´m having troubles trying to make just a part of my string to be in bold.
the code is:
String tudo = "";
foreach (Ent_Proposta_Executada_Item item in neg_prop_exe.ItensProposta)
{
tudo += item.NumItem + " " + item.DescrItem.ToUpper() + "\n" + item.ConteudoItem + "\n";
}
i want that the value item.DescrItem.ToUpper() to be in bold letters,could it be possible?