EPPlus 如何写入实际 'true' 值

EPPlus how to write actual 'true' value

如何使用 EPPlus 将实际的 excel TRUE 值写入单元格?我只是获取文本值,我必须明确地单击单元格并按 Enter 键才能将其识别为布尔值。

Cell.Value 是一个对象,所以如果您将它设置为 bool,它将装箱并保留类型:

var cells = worksheet.Cells;
cells["A1"].Value = false;   // not = "false"
cells["A2"].Value = true;    // not = "true"

哪个会给你这个: