Lucene.Net.Search.FieldComparator.BinarySearch C# (CSharp) Method

BinarySearch() protected static method

protected static BinarySearch ( System a, System key ) : int
a System
key System
return int
		protected internal static int BinarySearch(System.String[] a, System.String key)
		{
			return BinarySearch(a, key, 0, a.Length - 1);
		}
		

Same methods

FieldComparator::BinarySearch ( System a, System key, int low, int high ) : int