Product Documentation

c-treeDB API for C# - Developers Guide

Previous Topic

Next Topic

CTMoney.operator <, <=, >, >=, ==, !=

Syntax

bool operator < ( CTMoney left, CTMoney right)

bool operator <= ( CTMoney left, CTMoney right)

bool operator > ( CTMoney left, CTMoney right)

bool operator >= ( CTMoney left, CTMoney right)

bool operator == ( CTMoney left, CTMoney right)

bool operator != ( CTMoney left, CTMoney right)

Parameters

  • left [in] The left CTMoney object to be compared
  • right [in] The right CTMoney object to be compared

Description

These overloaded operators make comparisons between two CTMoney objects.

Return

The operators return true or false, depending on the result of the comparison.

TOCIndex