Device.op_Equality(Device,Device) Method (Microsoft.DirectX.DirectDraw)

Warning: This method is deprecated. Deprecated components of Microsoft DirectX 9.0 for Managed Code are considered obsolete. While these components are still supported in this release of DirectX 9.0 for Managed Code, they may be removed in the future. When writing new applications, you should avoid using these deprecated components. When modifying existing applications, you are strongly encouraged to remove any dependency on these components.

Compares the current instance of a class to another instance to determine whether they are the same. Deprecated.

Definition

Visual Basic Public Shared Function op_Equality( _
    ByVal left As Device, _
    ByVal right As Device _
) As Boolean
C# public static bool op_Equality(
    Device left,
    Device right
);
C++ public:
static bool operator==(
    Deviceleft,
    Deviceright
);
JScript public static function op_Equality(
    left : Device,
    right : Device
) : boolean;

Parameters

left Microsoft.DirectX.DirectDraw.Device
The Device structure to the left of the equality operator.
right Microsoft.DirectX.DirectDraw.Device
The Device structure to the right of the equality operator.

Return Value

System.Boolean
Value that is true if the objects are the same, or false if they are different.