Condividi tramite


Vector128.StoreUnsafe Metodo

Definizione

Overload

StoreUnsafe<T>(Vector128<T>, T, UIntPtr)

Archivia un vettore nella destinazione specificata.

StoreUnsafe<T>(Vector128<T>, T)

Archivia un vettore nella destinazione specificata.

StoreUnsafe<T>(Vector128<T>, T, UIntPtr)

Origine:
Vector128.cs
Origine:
Vector128.cs
Origine:
Vector128.cs

Importante

Questa API non è conforme a CLS.

Archivia un vettore nella destinazione specificata.

public:
generic <typename T>
 where T : value class[System::Runtime::CompilerServices::Extension]
 static void StoreUnsafe(System::Runtime::Intrinsics::Vector128<T> source, T % destination, UIntPtr elementOffset);
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static void StoreUnsafe(System::Runtime::Intrinsics::Vector128<T> source, T % destination, UIntPtr elementOffset);
[System.CLSCompliant(false)]
public static void StoreUnsafe<T> (this System.Runtime.Intrinsics.Vector128<T> source, ref T destination, UIntPtr elementOffset) where T : struct;
[System.CLSCompliant(false)]
public static void StoreUnsafe<T> (this System.Runtime.Intrinsics.Vector128<T> source, ref T destination, UIntPtr elementOffset);
[<System.CLSCompliant(false)>]
static member StoreUnsafe : System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> * 'T * unativeint -> unit (requires 'T : struct)
[<System.CLSCompliant(false)>]
static member StoreUnsafe : System.Runtime.Intrinsics.Vector128<'T> * 'T * unativeint -> unit
<Extension()>
Public Sub StoreUnsafe(Of T As Structure) (source As Vector128(Of T), ByRef destination As T, elementOffset As UIntPtr)
<Extension()>
Public Sub StoreUnsafe(Of T) (source As Vector128(Of T), ByRef destination As T, elementOffset As UIntPtr)

Parametri di tipo

T

Tipo degli elementi nel vettore.

Parametri

source
Vector128<T>

Vettore che verrà archiviato.

destination
T

Destinazione a cui verrà aggiunta elementOffset prima che il vettore venga archiviato.

elementOffset
UIntPtr

unativeint

Offset dell'elemento da destination da cui verrà archiviato il vettore.

Attributi

Eccezioni

Il tipo di source (T) non è supportato.

Si applica a

StoreUnsafe<T>(Vector128<T>, T)

Origine:
Vector128.cs
Origine:
Vector128.cs
Origine:
Vector128.cs

Archivia un vettore nella destinazione specificata.

public:
generic <typename T>
 where T : value class[System::Runtime::CompilerServices::Extension]
 static void StoreUnsafe(System::Runtime::Intrinsics::Vector128<T> source, T % destination);
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static void StoreUnsafe(System::Runtime::Intrinsics::Vector128<T> source, T % destination);
public static void StoreUnsafe<T> (this System.Runtime.Intrinsics.Vector128<T> source, ref T destination) where T : struct;
public static void StoreUnsafe<T> (this System.Runtime.Intrinsics.Vector128<T> source, ref T destination);
static member StoreUnsafe : System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> * 'T -> unit (requires 'T : struct)
static member StoreUnsafe : System.Runtime.Intrinsics.Vector128<'T> * 'T -> unit
<Extension()>
Public Sub StoreUnsafe(Of T As Structure) (source As Vector128(Of T), ByRef destination As T)
<Extension()>
Public Sub StoreUnsafe(Of T) (source As Vector128(Of T), ByRef destination As T)

Parametri di tipo

T

Tipo degli elementi nel vettore.

Parametri

source
Vector128<T>

Vettore che verrà archiviato.

destination
T

Destinazione in cui verranno archiviati source.

Eccezioni

Il tipo di source (T) non è supportato.

Si applica a