How to write data on multiple lines BUT within the same cell of csv?

后端 未结 5 960
深忆病人
深忆病人 2020-12-15 19:24

I want to create one csv file using C#.

I have some data which I want to write on multiple lines BUT within the same cell.

For example If I have following t

5条回答
  •  渐次进展
    2020-12-15 20:27

    Always wrap your description in between "\" eg: CsvRow.Add("\"" + ID + " : " + description + "\"");

提交回复
热议问题