ThreadPool.op_Inequality(ThreadPool,ThreadPool) Method (Microsoft.DirectX.DirectPlay)

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 different. Deprecated.

Definition

Visual Basic Public Shared Function op_Inequality( _
    ByVal left As ThreadPool, _
    ByVal right As ThreadPool _
) As Boolean
C# public static bool op_Inequality(
    ThreadPool left,
    ThreadPool right
);
C++ public:
static bool operator!=(
    ThreadPoolleft,
    ThreadPoolright
);
JScript public static function op_Inequality(
    left : ThreadPool,
    right : ThreadPool
) : boolean;

Parameters

left Microsoft.DirectX.DirectPlay.ThreadPool
The ThreadPool structure to the left of the equality operator.
right Microsoft.DirectX.DirectPlay.ThreadPool
The ThreadPool structure to the right of the equality operator.

Return Value

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