Gets the hash iteration at the specified index.

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

Syntax

C#
public byte[] this[
	int index
] { get; }
Visual Basic
Public ReadOnly Default Property Item ( _
	index As Integer _
) As Byte()
	Get
Visual C++
public:
property array<unsigned char>^ default[int index] {
	array<unsigned char>^ get (int index);
}

Parameters

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

Return Value

The specified hash iteration.

Exceptions

ExceptionCondition
System..::..ArgumentOutOfRangeExceptionWhen the specified index is less than zero.

See Also