布尔类型的 NPOI C# SetCellValue() 通过变量作为字符串
NPOI C# SetCellValue() of bool type via variable as string
我想通过变量作为字符串设置 bool 类型的 SetCellValue() 例如:
字符串参数 = "TRUE";
现在我想 SetCellValue(parameter)
从上面的字符串值中将单元格值设置为布尔类型的正确方法是什么?
非常感谢
您可以使用bool.Parse(string value)
string parameter = "TRUE";
SetCellValue(bool.Parse(parameter));
我想通过变量作为字符串设置 bool 类型的 SetCellValue() 例如:
字符串参数 = "TRUE";
现在我想 SetCellValue(parameter)
从上面的字符串值中将单元格值设置为布尔类型的正确方法是什么?
非常感谢
您可以使用bool.Parse(string value)
string parameter = "TRUE";
SetCellValue(bool.Parse(parameter));