10 lines
187 B
C#
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;
|
|
}
|
|
}
|