Node.IsSameNode

Node.IsSameNode method

The isSameNode() method of the Node interface is a legacy alias the for the === strict equality operator. That is, it tests whether two nodes are the same (in other words, whether they reference the same object).

Note: There is no need to use isSameNode(); instead use the === strict equality operator.

public bool IsSameNode(Node otherNode)
ParameterTypeDescription
otherNodeNodeThe Node to test against.

Return Value

A boolean value that is true if both nodes are stricly equal, false if not.

See Also