I understand that the char sequence that you provide to the Split method is a list of delimiter characters, not a single delimiter consisting of several characters.
In your case, Split treats the characters '\ r' and '\ n' as delimiters. Therefore, when it encounters the sequence "\ r \ n", it returns a string between the two delimiters, an empty string.
source share