System.Bluetooth.TBluetoothUUID.operator Inequality
Delphi
class operator NotEqual(const Left, Right: TGUID): Boolean; inline;
Propriétés
| Type | Visibilité | Source | Unité | Parent |
|---|---|---|---|---|
| function | public | System.pas | System.Bluetooth | TBluetoothUUID |
Description
Fonction permettant de déterminer l'inégalité de deux valeurs TBluetoothUUID. Opérateur <> surchargé.
L'opérateur d'inégalité renvoie True si les deux valeurs TBluetoothUUID données en paramètres ne sont pas égales, False sinon.
Delphi :
var a, b: TBluetoothUUID;
if (a <> b) then
; // Do something
C++ :
TBluetoothUUID a, b;
if (a != b)
; // Do something
- Remarque : N'appelez pas directement l'opérateur d'inégalité. C'est une surcharge de l'opération d'inégalité du compilateur.