Collection.IListContains Method 

Determines whether the Collection object contains a specific value. Implements the IList interface.

Namespace: Microsoft.VisualBasic

Assembly: Microsoft.VisualBasic (in microsoft.visualbasic.dll)

Private Function IListContains( _
   ByVal value As Object _
) As Boolean Implements IList.Contains
private bool IListContains(
   object value
);

Parameters

  • value
    The Object to locate in the Collection object.

Return Value

Returns True if the Object is found in the Collection object; otherwise, False.

Remarks

This method determines whether the Collection object contains a specific value.

Version Information

.NET Framework

Supported in: 2.0, 1.1, 1.0

See Also

Reference

Collection
IList
Contains