Ejemplo n.º 1
0
 /// <summary>
 /// Removes the first occurrence of a specific object from the <see cref="DicesCup"/>.
 /// </summary>
 /// <param name="item">The object to remove from the <see cref="DicesCup"/>.</param>
 /// <returns>True if item is successfully removed; otherwise, false. This method also returns false if item was not found in the <see cref="DicesCup"/>.</returns>
 public bool Remove(Dice item)
 {
     return(Dices.Remove(item));
 }