ImmutableStack<T>.Pop 메서드

정의

오버로드

Pop()

변경할 수 없는 스택의 맨 위에 있는 요소를 제거한 후 스택을 반환합니다.

Pop(T)

변경할 수 없는 스택에서 지정된 요소를 제거한 후 스택을 반환합니다.

Pop()

Source:
ImmutableStack_1.cs
Source:
ImmutableStack_1.cs
Source:
ImmutableStack_1.cs

변경할 수 없는 스택의 맨 위에 있는 요소를 제거한 후 스택을 반환합니다.

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)

반환

스택입니다. null일 수 없습니다.

예외

스택이 비어 있습니다.

적용 대상

Pop(T)

Source:
ImmutableStack_1.cs
Source:
ImmutableStack_1.cs
Source:
ImmutableStack_1.cs

변경할 수 없는 스택에서 지정된 요소를 제거한 후 스택을 반환합니다.

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)

매개 변수

value
T

스택에서 제거할 값입니다.

반환

스택입니다. null일 수 없습니다.

적용 대상