ImmutableStack<T>.Pop Méthode

Définition

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.

S’applique à