WPF TextBlock Line Break Code Behind

TextBlock tb = new TextBlock();
tb.Text = "Hello" + Environment.NewLine + "Would you please just work?";
DedSec