RandomNumberGenerator.GetItems Método

Definição

Sobrecargas

GetItems<T>(ReadOnlySpan<T>, Int32)

Cria uma matriz preenchida com itens escolhidos aleatoriamente a partir de opções.

GetItems<T>(ReadOnlySpan<T>, Span<T>)

Preenche os elementos de um intervalo especificado com itens escolhidos aleatoriamente do conjunto de opções fornecido.

GetItems<T>(ReadOnlySpan<T>, Int32)

Origem:
RandomNumberGenerator.cs
Origem:
RandomNumberGenerator.cs

Cria uma matriz preenchida com itens escolhidos aleatoriamente a partir de opções.

public:
generic <typename T>
 static cli::array <T> ^ GetItems(ReadOnlySpan<T> choices, int length);
public static T[] GetItems<T> (ReadOnlySpan<T> choices, int length);
static member GetItems : ReadOnlySpan<'T> * int -> 'T[]
Public Shared Function GetItems(Of T) (choices As ReadOnlySpan(Of T), length As Integer) As T()

Parâmetros de tipo

T

O tipo de itens.

Parâmetros

choices
ReadOnlySpan<T>

Os itens a serem usados para preencher a matriz.

length
Int32

O comprimento da matriz a ser retornada preenchida com itens.

Retornos

T[]

Uma matriz preenchida com opções aleatórias.

Exceções

choices está vazio.

length não é zero ou um número positivo.

Aplica-se a

GetItems<T>(ReadOnlySpan<T>, Span<T>)

Origem:
RandomNumberGenerator.cs
Origem:
RandomNumberGenerator.cs

Preenche os elementos de um intervalo especificado com itens escolhidos aleatoriamente do conjunto de opções fornecido.

public:
generic <typename T>
 static void GetItems(ReadOnlySpan<T> choices, Span<T> destination);
public static void GetItems<T> (ReadOnlySpan<T> choices, Span<T> destination);
static member GetItems : ReadOnlySpan<'T> * Span<'T> -> unit
Public Shared Sub GetItems(Of T) (choices As ReadOnlySpan(Of T), destination As Span(Of T))

Parâmetros de tipo

T

O tipo de itens.

Parâmetros

choices
ReadOnlySpan<T>

Os itens a serem usados para preencher o buffer.

destination
Span<T>

O buffer para receber os itens.

Exceções

choices está vazio.

Aplica-se a