Gets the HashNode at the specified index.

Namespace: Classless.Hasher.Methods
Assembly: Classless.Hasher (in Classless.Hasher.dll) Version: 0.9.4179.24336

Syntax

C#
public HashNode this[
	int index
] { get; }
Visual Basic
Public ReadOnly Default Property Item ( _
	index As Integer _
) As HashNode
	Get
Visual C++
public:
property HashNode^ default[int index] {
	HashNode^ get (int index);
}

Parameters

index
Type: System..::..Int32
The zero-based index of the HashNode to get.

Return Value

The specified HashNode.

See Also