Belot.CardsCollection.Contains C# (CSharp) Метод

Contains() публичный Метод

Whether the collection contains a specific card.
public Contains ( Card value ) : bool
value Card
Результат bool
        public bool Contains( Card value )
        {
            // If value is not of type Card, this will return false.
            return( InnerList.Contains( value ) );
        }