ImmutableStack<T>.Pop Metoda

Definicja

Przeciążenia

Pop()

Usuwa element w górnej części niezmiennego stosu i zwraca stos po usunięciu.

Pop(T)

Usuwa określony element ze niezmienialnego stosu i zwraca stos po usunięciu.

Pop()

Źródło:
ImmutableStack_1.cs
Źródło:
ImmutableStack_1.cs
Źródło:
ImmutableStack_1.cs

Usuwa element w górnej części niezmiennego stosu i zwraca stos po usunięciu.

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)

Zwraca

Stos; nigdy .null

Wyjątki

Stos jest pusty.

Dotyczy

Pop(T)

Źródło:
ImmutableStack_1.cs
Źródło:
ImmutableStack_1.cs
Źródło:
ImmutableStack_1.cs

Usuwa określony element ze niezmienialnego stosu i zwraca stos po usunięciu.

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)

Parametry

value
T

Wartość do usunięcia ze stosu.

Zwraca

Stos; nigdy .null

Dotyczy