Node.IsSameNode

Node.IsSameNode method

Method 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 strictly equal, false if not.

See Also