CPF/CPF.ReoGrid/OpenXMLUtility.cs

10 lines
187 B
C#
Raw Normal View History

2024-06-24 10:15:59 +08:00
using System;
internal class OpenXMLUtility
{
public static bool IsTrue(string booleanValue)
{
return booleanValue == "1" || string.Compare(booleanValue, "true", true) == 0;
}
}