Want to replace "\n" with new line character
<VisualState x:Name="Snapped">
<Storyboard>
<ObjectAnimationUsingKeyFrames Storyboard.TargetProperty="Text" Storyboard.TargetName="textBlock">
<DiscreteObjectKeyFrame KeyTime="0" Value="Here is my text.\nThis is new line"/>
</Storyboard>
</VisualState>
The output text is: Here is my text.\nThis is new line
without new line character.
P.S.: If this value can be filled with the string in resource file that would be a great..!! Either way will help me out but later one is good approach.