ConcurrentStack<T>.TryPop(T) Méthode

Définition

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>.

S’applique à