Click or drag to resize

BaseNodeEquals Method (INode)

Nodes must implement an Equals method so we can do type specific equality.

Namespace:  VDS.RDF
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public abstract bool Equals(
	INode other
)

Parameters

other
Type: VDS.RDFINode
Node to check for equality.

Return Value

Type: Boolean

[Missing <returns> documentation for "M:VDS.RDF.BaseNode.Equals(VDS.RDF.INode)"]

Implements

IEquatableTEquals(T)
Remarks
Nodes implementations are also required to implement an override of the non-generic Equals method. Standard implementations of some equality comparisons can be found in EqualityHelper.
See Also