Performs a fast search for the specified object within the current FastList.

Namespace:  C1.C1Preview.Util
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
protected bool FindObjectIndex(
	Object obj,
	out int index
)
Visual Basic
Protected Function FindObjectIndex ( _
	obj As Object, _
	<OutAttribute> ByRef index As Integer _
) As Boolean

Parameters

obj
Type: System..::..Object
The object to search for.
index
Type: System..::..Int32%
OUT: the index of obj within the current list, or 0 if the object was not found.

Return Value

true if obj was found, false otherwise.

See Also