You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
static async Task Main(string[] args)
{
var path = Path.Combine("D:\\Document\\errorCSV", $"{Guid.NewGuid()}.xlsx");
var table = new DataTable();
{
table.Columns.Add("Column1", typeof(double));
table.Columns.Add("Column2", typeof(double));
table.Rows.Add(1.0, double.NaN);
}
MiniExcel.SaveAs(path, table);
The text was updated successfully, but these errors were encountered:
yiyinghu97
changed the title
含有Nan的reader写出的xlsx打开会提醒
含有Nan的reader写出的xlsx打开会提醒内容有问题
Nov 7, 2024
yiyinghu97
changed the title
含有Nan的reader写出的xlsx打开会提醒内容有问题
When opening the xlsx written by a reader containing Nan, it will prompt that there is a problem with the content.
Nov 25, 2024
The text was updated successfully, but these errors were encountered: