I do it as so!
I add an line code as "mProcessedText = mText.Replace("\\n", "\n");", is it right?
void ProcessText ()
{
mChanged = true;
hasChanged = false;
mLastText = mText;
mProcessedText = mText.Replace("\\n", "\n");
...............................................
}