VbPointerTReferenceEquals Method
Determines whether the specified Object instances are the same instance.
Namespace: DevCase.Win32.CommonAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[EditorBrowsableAttribute(EditorBrowsableState.Advanced)]
public static bool ReferenceEquals(
Object objA,
Object objB
)
<EditorBrowsableAttribute(EditorBrowsableState.Advanced)>
Public Shared Function ReferenceEquals (
objA As Object,
objB As Object
) As Boolean
Dim objA As Object
Dim objB As Object
Dim returnValue As Boolean
returnValue = VbPointer.ReferenceEquals(objA,
objB)
public:
[EditorBrowsableAttribute(EditorBrowsableState::Advanced)]
static bool ReferenceEquals(
Object^ objA,
Object^ objB
)
[<EditorBrowsableAttribute(EditorBrowsableState.Advanced)>]
static member ReferenceEquals :
objA : Object *
objB : Object -> bool
No code example is currently available or this language may not be supported.
- objA Object
-
The first object to compare.
- objB Object
-
The second object to compare.
Boolean if
objA is the same instance as
objB
or if both are
; otherwise,
.