In a Windows form, you can use Environment.NewLine to break the text in two line:
label1.Text = "First line" + Environment.NewLine + "Second line";
In a ASP.NET webform page, you can use <br /> in the text:
label1.Text = "First line<br />Second line";