System.Bluetooth.TBluetoothUUID.operator Inequality

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class operator NotEqual(const Left, Right: TGUID): Boolean; inline;

Properties

Type Visibility Source Unit Parent
function public System.pas System.Bluetooth TBluetoothUUID

Description

Function to determine the inequality of two TBluetoothUUID values. Overloaded <> operator.

The inequality operator returns True if the two TBluetoothUUID values given as parameters are not equal, False otherwise.

Delphi:

var a, b: TBluetoothUUID;
if (a <> b) then
  ; // Do something

C++:

TBluetoothUUID a, b;
if (a != b)
    ; // Do something
Note: Do not call the inequality operator directly. It is an overload of the compiler inequality operation.

See Also