I have a textarea where I insert \\n when user presses enter. Code from this textarea is sent to a WCF service via jQuery.ajax(). I cannot save
\\n
jQuery.ajax()
From within your WCF service can you not just use String.Replace ?
String.Replace
text = text.Replace("\n","");