ImmutableStack<T>.Pop 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.
Surcharges
Pop() |
Supprime l’élément en haut de la pile immuable et retourne la pile après la suppression. |
Pop(T) |
Supprime l’élément spécifié de la pile immuable et retourne la pile après la suppression. |
Pop()
- Source:
- ImmutableStack_1.cs
- Source:
- ImmutableStack_1.cs
- Source:
- ImmutableStack_1.cs
Supprime l’élément en haut de la pile immuable et retourne la pile après la suppression.
public:
System::Collections::Immutable::ImmutableStack<T> ^ Pop();
public System.Collections.Immutable.ImmutableStack<T> Pop ();
member this.Pop : unit -> System.Collections.Immutable.ImmutableStack<'T>
Public Function Pop () As ImmutableStack(Of T)
Retours
Une pile ; jamais null
.
Exceptions
La pile est vide.
S’applique à
Pop(T)
- Source:
- ImmutableStack_1.cs
- Source:
- ImmutableStack_1.cs
- Source:
- ImmutableStack_1.cs
Supprime l’élément spécifié de la pile immuable et retourne la pile après la suppression.
public:
System::Collections::Immutable::ImmutableStack<T> ^ Pop([Runtime::InteropServices::Out] T % value);
public System.Collections.Immutable.ImmutableStack<T> Pop (out T value);
member this.Pop : 'T -> System.Collections.Immutable.ImmutableStack<'T>
Public Function Pop (ByRef value As T) As ImmutableStack(Of T)
Paramètres
- value
- T
Valeur à supprimer de la pile.
Retours
Une pile ; jamais null
.