Método SafeBuffer.WriteArray<T> (UInt64, T[], Int32, Int32)
Dica
The .NET API Reference documentation has a new home. Visit the .NET API Browser on docs.microsoft.com to see the new experience.
Grava o número de tipos de valor especificado em um local de memória lendo bytes começando do local especificado na matriz de entrada.
Esta API não é compatível com CLS.
Namespace: System.Runtime.InteropServices
Assembly: mscorlib (em mscorlib.dll)
Sintaxe
[CLSCompliantAttribute(false)]
public void WriteArray<T>(
ulong byteOffset,
T[] array,
int index,
int count
)
where T : struct
public:
generic<typename T>
where T : value struct, gcnew()
[CLSCompliantAttribute(false)]
void WriteArray(
unsigned long long byteOffset,
array<T>^ array,
int index,
int count
)
[<CLSCompliantAttribute(false)>]
member WriteArray<'T when 'T : struct> :
byteOffset:uint64 *
array:'T[] *
index:int *
count:int -> unit
<CLSCompliantAttribute(False)>
Public Sub WriteArray(Of T As Structure) (
byteOffset As ULong,
array As T(),
index As Integer,
count As Integer
)
Parâmetros
byteOffset
Type: System.UInt64O local na memória no qual gravar.
array
Type: T[]A matriz de entrada.
index
Type: System.Int32O deslocamento na matriz da qual a leitura será iniciada.
count
Type: System.Int32O número de tipos de valor a serem gravados.
Parâmetros de Tipo
- T
O tipo de valor para gravação.
Exceções
Exception | Condition |
---|---|
ArgumentNullException | array é null. |
ArgumentOutOfRangeException | index ou count é menor que zero. |
ArgumentException | O comprimento da matriz de entrada menos index é menor que count. |
InvalidOperationException | O método Initialize não foi chamado. |
Comentários
Cada elemento na matriz de entrada consiste o tipo de valor genérico da classe.
Informações de Versão
Plataforma Universal do Windows
Disponível desde 8
.NET Framework
Disponível desde 4.0
Biblioteca de Classes Portátil
Com suporte no: plataformas portáteis do .NET
Windows Phone
Disponível desde 8.1
Confira Também
ReadArray<T>
Classe SafeBuffer
Namespace System.Runtime.InteropServices
Retornar ao início