Edit
I don't believe this is an duplicate.....If you read the first 5 words("I'm using the Aspose library"). You will see he is using some 3rd party library. I am not. I am rendering a csv file that I want to open in excel.
I a C# application that generates a csv file. When I open up the csv file I notice that in columnA my text is in a single line. I would like to break it up into multiple lines(still in the same column).
I know if I use alt + enter in excel that will make new lines.
I know if I press enter in notepad++ it makes a label of (CR LF).
What code can I use to make it so I can have new lines that I can inject into my strings when in my C# application?
I tried
\n
\n\r
Enivroment.NewLine
Nothing works.