ConcurrentStack<T>.TryPop(T) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Tente de dépiler et retourner l'objet en haut de ConcurrentStack<T>.
public:
bool TryPop([Runtime::InteropServices::Out] T % result);
public bool TryPop (out T result);
member this.TryPop : 'T -> bool
Public Function TryPop (ByRef result As T) As Boolean
Paramètres
- result
- T
Quand cette méthode retourne une valeur, si l'opération a réussi, result
contient l'objet supprimé. S'il n'existait aucun objet à supprimer, la valeur n'est pas spécifiée.
Retours
true
si un élément a été supprimé et retourné du haut de ConcurrentStack<T> ; sinon, false
.
Remarques
Pour obtenir un exemple de code, consultez ConcurrentStack<T>.