[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:Tools.CollectionsT.GenericT.ListWithEvents`1.IndexOf(System.Object)"]

Namespace: Tools.CollectionsT.GenericT
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
[EditorBrowsableAttribute(EditorBrowsableState.Never)]
[ObsoleteAttribute("Use type-safe overload instead")]
public override sealed int IndexOf(
	Object value
)
Visual Basic
<EditorBrowsableAttribute(EditorBrowsableState.Never)> _
<ObsoleteAttribute("Use type-safe overload instead")> _
Public Overrides NotOverridable Function IndexOf ( _
	value As Object _
) As Integer
Visual C++
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
[ObsoleteAttribute(L"Use type-safe overload instead")]
public:
virtual int IndexOf(
	Object^ value
) override sealed
F#
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
[<ObsoleteAttribute("Use type-safe overload instead")>]
abstract IndexOf : 
        value:Object -> int 
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
[<ObsoleteAttribute("Use type-safe overload instead")>]
override IndexOf : 
        value:Object -> int 
JScript
public override final function IndexOf(
	value : Object
) : int

Parameters

value
Type: System..::..Object
The Object to locate in the IList.

Return Value

The index of value if found in the list; otherwise, -1.

Remarks

Provided for compatibility with CollectionEditor

See Also