ImmutableStack.CreateRange<T>(IEnumerable<T>) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
创建包含指定项的新不可变堆栈。
public:
generic <typename T>
static System::Collections::Immutable::ImmutableStack<T> ^ CreateRange(System::Collections::Generic::IEnumerable<T> ^ items);
public static System.Collections.Immutable.ImmutableStack<T> CreateRange<T> (System.Collections.Generic.IEnumerable<T> items);
static member CreateRange : seq<'T> -> System.Collections.Immutable.ImmutableStack<'T>
Public Function CreateRange(Of T) (items As IEnumerable(Of T)) As ImmutableStack(Of T)
类型参数
- T
堆栈中项的类型。
参数
- items
- IEnumerable<T>
在堆栈不可变之前要添加到该堆栈的项。
返回
包含指定项的不可变堆栈。