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 ) );
        }