Adding text into Excel sheet by using C#

Viewed 14382

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?

1 Answers
Related