How would you normalize all new-line sequences in a string to one type?
I\'m looking to make them all CRLF for the purpose of email (MIME documents). Ideally this w
string nonNormalized = "\r\n\n\r"; string normalized = nonNormalized.Replace("\r", "\n").Replace("\n", "\r\n");