Returns hash of chars in range start (inclusive) to end (inclusive)

Namespace: Lucene.Net.Util
Assembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1

Syntax

C#
public static int HashCode(
	char[] array,
	int start,
	int end
)
Visual Basic
Public Shared Function HashCode ( _
	array As Char(), _
	start As Integer, _
	end As Integer _
) As Integer
Visual C++
public:
static int HashCode(
	array<wchar_t>^ array, 
	int start, 
	int end
)

Parameters

array
Type: array<System..::..Char>[]()[][]

[Missing <param name="array"/> documentation for "M:Lucene.Net.Util.ArrayUtil.HashCode(System.Char[],System.Int32,System.Int32)"]

start
Type: System..::..Int32

[Missing <param name="start"/> documentation for "M:Lucene.Net.Util.ArrayUtil.HashCode(System.Char[],System.Int32,System.Int32)"]

end
Type: System..::..Int32

[Missing <param name="end"/> documentation for "M:Lucene.Net.Util.ArrayUtil.HashCode(System.Char[],System.Int32,System.Int32)"]

Return Value

[Missing <returns> documentation for "M:Lucene.Net.Util.ArrayUtil.HashCode(System.Char[],System.Int32,System.Int32)"]

See Also