ImmutableStack<T>.IImmutableStack<T>.Push(T) 方法

定义

在不可变堆栈顶部插入一个元素,并返回新堆栈。

 virtual System::Collections::Immutable::IImmutableStack<T> ^ System.Collections.Immutable.IImmutableStack<T>.Push(T value) = System::Collections::Immutable::IImmutableStack<T>::Push;
System.Collections.Immutable.IImmutableStack<T> IImmutableStack<T>.Push (T value);
abstract member System.Collections.Immutable.IImmutableStack<T>.Push : 'T -> System.Collections.Immutable.IImmutableStack<'T>
override this.System.Collections.Immutable.IImmutableStack<T>.Push : 'T -> System.Collections.Immutable.IImmutableStack<'T>
Function Push (value As T) As IImmutableStack(Of T) Implements IImmutableStack(Of T).Push

参数

value
T

要推送到堆栈中的元素。

返回

新堆栈。

实现

注解

此成员是显式接口成员的实现。 它只能在 ImmutableStack<T> 实例被强制转换为 IImmutableStack<T> 接口时使用。

适用于