Skip to main content

Posts

Showing posts with the label not equal to

Description of Relational operators in Microsoft dynamics Axapta x++

Description of Relational operators in Microsoft dynamics x++ Some of the most commonly used relational operators are as follows: • == returns true if both expressions are equal(its double equal to) • != returns true if the first expression is not equal to the second expressions(its not equal to) • && returns true if the first expression AND the second expression are true(its double ampherson) • || returns true if the first expression OR the second expression OR both are true(its or symbol) • ! returns true if the expression is false (can only be used with one expression) • >= returns true if the first expression is greater than or equal to the second expression • <= returns true if the first expression is less than or equal to the second expression • > returns true if the first expression is greater than the second expression • < returns true if the first expression is less than the second expression