I am having hard time to match Special characters set in Silverlight. I only on the following:
To represent a LineBreak in Silverlight TextBlock:
use : > line
To add a line break to the Text property of a TextBox in XAML, use the ASCII character code for a linefeed as shown in the following example:
To add a line break to the Text property of a TextBox in code-behind, use the Environment.NewLine static value (which is the same as \r\n) as shown in the following code example:
this._test.Text = string.Format(
"This is line one.{0}This is line two.",
Environment.NewLine);