Originally posted by plfinch

If this is your first visit, be sure to check out the FAQ. You must register before you can post.
IMPORTANT: Your first post will be checked for appropriate content. This may take a bit of time.
return m_expressionEval.EvaluateBool();
bool returnBool = false;
try
{
m_expressionEval.EvaluateBool();
}
catch
{
m_btDevice.BtScanner.hspi.LogString( HSPI.IFACE_NAME, "Error while evaluating the expression [" + m_expressionEval.Expression + "] for device " + m_btDevice.Name );
}
return returnBool;
returnBool = m_expressionEval.EvaluateBool();
Comment