Is it possible to display the label text with line breaks exactly as per the image
You may append HTML in between your lines. Something like:
MyLabel.Text = "SomeText asdfa asd fas df asdf" + "
" + "Some more text";
With StringBuilder you can try:
StringBuilder sb = new StringBuilder();
sb.AppendLine("Some text with line one");
sb.AppendLine("Some mpre text with line two");
MyLabel.Text = sb.ToString().Replace(Environment.NewLine, "
");