Compares the values of two strings.
bool COMPARE(string a, string b)
bool COMPARE(string a, string b, bool ignoreCase)
COMPARE(ProductName,ProductSold)
If the ProductName is the same as the ProductSold then the function will return true
, if they are not the same then false
will be returned.