Habanero.Faces.Win.ListBoxWin.ListBoxObjectCollectionWin.Contains C# (CSharp) Method

Contains() public method

Determines if the specified item is located within the collection
public Contains ( object value ) : bool
value object An object representing the item to locate in the collection
return bool
            public bool Contains(object value)
            {
                return _items.Contains(value);
            }