编写了将数据导出到 csv 文件的方法。如果DEC20
csv 中单元格的值20-Dec
是不正确的。
我的代码是这样的:
for (int i = 0; i < myData.Count(); i++)
{
sb.AppendLine(string.Join(delimiter,
Common.FormatExportString(myData[i].Code),
Common.FormatExportString(myData[i].Name),
Common.FormatExportString(myData[i].Description)));
}
//returns the file after writing the stream to the csv file.
return File(new System.Text.UTF8Encoding().GetBytes(sb.ToString()), "text/csv", fileName);
请帮助我string
使用 C# 获取要在 excel (csv) 文件中显示的确切格式。
例如: myData[i].Name 数据将是
DEC20,或 2-5
像这样,
但 csv(excel) 中的输出显示为
12 月 20 日和 5 月 5 日
而不是原来的。