Skip to main content

Posts

Showing posts with the label greater than

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