Luid.Equality Operator

DotRas SDK

Collapse image Expand Image Copy image CopyHover image
Indicates whether the objects are equal.

Namespace: DotRas
Assembly: DotRas (in DotRas.dll) Version: 1.3.5166.33435 (1.3.0.0)

Syntax

C#
public static bool operator ==(
	Luid objA,
	Luid objB
)
Visual Basic
Public Shared Operator = ( 
	objA As Luid,
	objB As Luid
) As Boolean
Visual C++
public:
static bool operator ==(
	Luid objA, 
	Luid objB
)
F#
static let inline (=)
        objA : Luid * 
        objB : Luid  : bool

Parameters

objA
Type: DotRas..::..Luid
The first object to check.
objB
Type: DotRas..::..Luid
The second object to check.

Return Value

Type: Boolean
true if the objects are equal, otherwise false.

See Also