I’m trying to add a pretty long text into the Excel sheet by using C#. I use this code:
worksheet.Cells[1, 1] = textString;
The result is here:

What I want is:

Suggestions?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To get this effect you have to copy the text to clipboard and then paste it to the relevant cell. See this example
Note: Set
textStringto your very long string.CODE
SNAPSHOT