CPF/CPF.ReoGrid/OpenXMLUtility.cs
2024-06-24 10:15:59 +08:00

10 lines
187 B
C#

using System;
internal class OpenXMLUtility
{
public static bool IsTrue(string booleanValue)
{
return booleanValue == "1" || string.Compare(booleanValue, "true", true) == 0;
}
}