#region 转Bool
///
/// 将string类型转换成bool类型
///
/// 目标字符串
/// 默认值
///
public static bool StringToBool(string s, bool defaultValue)
{
if (s == "false")
return false;
else if (s == "true")
return true;
return defaultValue;
}
///
/// 将string类型转换成bool类型
///
/// 目标字符串
///
public static bool ToBool(string s)
{
return StringT