|
Class |
Delphi |
Operation |
C# |
|
Common |
:= |
assignment |
= |
|
Arithmetic |
+ |
addition |
+ |
|
− |
subtraction |
− |
|
* |
multiplication |
* |
|
/ |
real division |
/ |
|
div |
integer division |
/ |
|
mod |
remainder |
% |
|
Conditional |
not |
negation |
! |
|
and |
conjuction |
&& |
|
or |
disjunction |
|| |
|
xor |
exclusive disjunction |
^ |
|
Bitwise |
not |
negation |
! |
|
and |
conjuction |
& |
|
or |
disjunction |
| |
|
xor |
exclusive disjunction |
^ |
|
shl |
shift left |
<< |
|
shr |
shift right |
>> |
|
String |
+ |
concatenation |
+ |
|
Relational |
= |
equal |
== |
|
<> |
not equal |
!= |
|
< |
less than |
< |
|
> |
greater than |
> |
|
<= |
less than or equal to |
<= |
|
>= |
greater than or equal to |
>= |
|