/// <summary> /// uses the Remove() method from the Deck class to remove a card /// </summary> /// <param name="deck">the Deck object to remove from</param> /// <returns>the updated Deck object</returns> public static Deck <Card> RemoveFromDeck(Deck <Card> deck) { deck.Remove(); return(deck); }