System.Bluetooth.TBluetoothUUID.operator Equality

De RAD Studio API Documentation
Aller à : navigation, rechercher

Delphi

class operator Equal(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'égalité de deux valeurs TBluetoothUUID. Opérateur == surchargé.

L'opérateur d'égalité renvoie True si les deux valeurs TBluetoothUUID données en paramètres sont é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'égalité. C'est une surcharge de l'opération d'égalité du compilateur.

Voir aussi