Click or drag to resize

BaseNodeCompareTo Method (IVariableNode)

Nodes must implement a CompareTo method to allow them to be Sorted.

Namespace:  VDS.RDF
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public abstract int CompareTo(
	IVariableNode other
)

Parameters

other
Type: VDS.RDFIVariableNode
Node to compare self to.

Return Value

Type: Int32

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

Implements

IComparableTCompareTo(T)
Remarks
Implementations should use the SPARQL Term Sort Order for ordering nodes (as opposed to value sort order). Standard implementations of Node type specific comparisons can be found in ComparisonHelper.
See Also