ImmutableArray.ToImmutableArray Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
ToImmutableArray<T>(ReadOnlySpan<T>) |
Produza uma matriz imutável de conteúdo de elementos especificados. |
ToImmutableArray<T>(Span<T>) |
Converte o intervalo em uma matriz imutável. |
ToImmutableArray<TSource>(IEnumerable<TSource>) |
Cria uma matriz imutável com base na coleção especificada. |
ToImmutableArray<TSource>(ImmutableArray<TSource>.Builder) |
Cria uma matriz imutável do conteúdo atual da matriz do construtor. |
ToImmutableArray<T>(ReadOnlySpan<T>)
- Origem:
- ImmutableArray.cs
- Origem:
- ImmutableArray.cs
- Origem:
- ImmutableArray.cs
Produza uma matriz imutável de conteúdo de elementos especificados.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static System::Collections::Immutable::ImmutableArray<T> ToImmutableArray(ReadOnlySpan<T> items);
public static System.Collections.Immutable.ImmutableArray<T> ToImmutableArray<T> (this ReadOnlySpan<T> items);
static member ToImmutableArray : ReadOnlySpan<'T> -> System.Collections.Immutable.ImmutableArray<'T>
<Extension()>
Public Function ToImmutableArray(Of T) (items As ReadOnlySpan(Of T)) As ImmutableArray(Of T)
Parâmetros de tipo
- T
O tipo de elemento na lista.
Parâmetros
- items
- ReadOnlySpan<T>
Os elementos a serem armazenados na matriz.
Retornos
Uma matriz imutável que contém os itens no intervalo.
Aplica-se a
ToImmutableArray<T>(Span<T>)
- Origem:
- ImmutableArray.cs
- Origem:
- ImmutableArray.cs
- Origem:
- ImmutableArray.cs
Converte o intervalo em uma matriz imutável.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static System::Collections::Immutable::ImmutableArray<T> ToImmutableArray(Span<T> items);
public static System.Collections.Immutable.ImmutableArray<T> ToImmutableArray<T> (this Span<T> items);
static member ToImmutableArray : Span<'T> -> System.Collections.Immutable.ImmutableArray<'T>
<Extension()>
Public Function ToImmutableArray(Of T) (items As Span(Of T)) As ImmutableArray(Of T)
Parâmetros de tipo
- T
O tipo de elemento na lista.
Parâmetros
- items
- Span<T>
Os elementos a serem armazenados na matriz.
Retornos
Uma matriz imutável que contém os itens no intervalo.
Aplica-se a
ToImmutableArray<TSource>(IEnumerable<TSource>)
- Origem:
- ImmutableArray.cs
- Origem:
- ImmutableArray.cs
- Origem:
- ImmutableArray.cs
Cria uma matriz imutável com base na coleção especificada.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Collections::Immutable::ImmutableArray<TSource> ToImmutableArray(System::Collections::Generic::IEnumerable<TSource> ^ items);
public static System.Collections.Immutable.ImmutableArray<TSource> ToImmutableArray<TSource> (this System.Collections.Generic.IEnumerable<TSource> items);
static member ToImmutableArray : seq<'Source> -> System.Collections.Immutable.ImmutableArray<'Source>
<Extension()>
Public Function ToImmutableArray(Of TSource) (items As IEnumerable(Of TSource)) As ImmutableArray(Of TSource)
Parâmetros de tipo
- TSource
O tipo de elementos contidos em items
.
Parâmetros
- items
- IEnumerable<TSource>
A coleção de objetos a serem copiados na matriz imutável.
Retornos
Uma matriz imutável que contém a coleção especificada de objetos.
Aplica-se a
ToImmutableArray<TSource>(ImmutableArray<TSource>.Builder)
- Origem:
- ImmutableArray.cs
- Origem:
- ImmutableArray.cs
- Origem:
- ImmutableArray.cs
Cria uma matriz imutável do conteúdo atual da matriz do construtor.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Collections::Immutable::ImmutableArray<TSource> ToImmutableArray(System::Collections::Immutable::ImmutableArray<TSource>::Builder ^ builder);
public static System.Collections.Immutable.ImmutableArray<TSource> ToImmutableArray<TSource> (this System.Collections.Immutable.ImmutableArray<TSource>.Builder builder);
static member ToImmutableArray : System.Collections.Immutable.ImmutableArray<'Source>.Builder -> System.Collections.Immutable.ImmutableArray<'Source>
<Extension()>
Public Function ToImmutableArray(Of TSource) (builder As ImmutableArray(Of TSource).Builder) As ImmutableArray(Of TSource)
Parâmetros de tipo
- TSource
O tipo de elementos contidos na matriz imutável.
Parâmetros
- builder
- ImmutableArray<TSource>.Builder
O construtor para o qual criar a matriz imutável.
Retornos
Uma matriz imutável que é preenchida com o conteúdo atual da matriz do construtor.