Is Operator

Syntax:
expr
Is expr
Group: Operator
Description:
Return the True if both exprs refer to the same object.
See Also: Objects.
Example:

Sub Main
Dim
X As Object
Dim
Y As Object
Debug
.Print X Is Y ' True
End
Sub