Vector128.StoreUnsafe Methode
Definitie
Belangrijk
Bepaalde informatie heeft betrekking op een voorlopige productversie die aanzienlijk kan worden gewijzigd voordat deze wordt uitgebracht. Microsoft biedt geen enkele expliciete of impliciete garanties met betrekking tot de informatie die hier wordt verstrekt.
Overloads
| Name | Description |
|---|---|
| StoreUnsafe<T>(Vector128<T>, T) |
Slaat een vector op de opgegeven bestemming op. |
| StoreUnsafe<T>(Vector128<T>, T, UIntPtr) |
Slaat een vector op de opgegeven bestemming op. |
StoreUnsafe<T>(Vector128<T>, T)
- Bron:
- Vector128.cs
- Bron:
- Vector128.cs
- Bron:
- Vector128.cs
- Bron:
- Vector128.cs
- Bron:
- Vector128.cs
Slaat een vector op de opgegeven bestemming op.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static void StoreUnsafe(System::Runtime::Intrinsics::Vector128<T> source, T % destination);
public:
generic <typename T>
where T : value class[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);
public static void StoreUnsafe<T>(this System.Runtime.Intrinsics.Vector128<T> source, ref T destination) where T : struct;
static member StoreUnsafe : System.Runtime.Intrinsics.Vector128<'T> * 'T -> unit
static member StoreUnsafe : System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> * 'T -> unit (requires 'T : struct)
<Extension()>
Public Sub StoreUnsafe(Of T) (source As Vector128(Of T), ByRef destination As T)
<Extension()>
Public Sub StoreUnsafe(Of T As Structure) (source As Vector128(Of T), ByRef destination As T)
Type parameters
- T
Het type van de elementen in de vector.
Parameters
- source
- Vector128<T>
De vector die wordt opgeslagen.
- destination
- T
De bestemming waarop source wordt opgeslagen.
Uitzonderingen
Het type source (T) wordt niet ondersteund.
Van toepassing op
StoreUnsafe<T>(Vector128<T>, T, UIntPtr)
- Bron:
- Vector128.cs
- Bron:
- Vector128.cs
- Bron:
- Vector128.cs
- Bron:
- Vector128.cs
- Bron:
- Vector128.cs
Belangrijk
Deze API is niet CLS-conform.
Slaat een vector op de opgegeven bestemming op.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static void StoreUnsafe(System::Runtime::Intrinsics::Vector128<T> source, T % destination, UIntPtr elementOffset);
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);
[System.CLSCompliant(false)]
public static void StoreUnsafe<T>(this System.Runtime.Intrinsics.Vector128<T> source, ref 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)>]
static member StoreUnsafe : System.Runtime.Intrinsics.Vector128<'T> * 'T * unativeint -> unit
[<System.CLSCompliant(false)>]
static member StoreUnsafe : System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> * 'T * unativeint -> unit (requires 'T : struct)
<Extension()>
Public Sub StoreUnsafe(Of T) (source As Vector128(Of T), ByRef destination As T, elementOffset As UIntPtr)
<Extension()>
Public Sub StoreUnsafe(Of T As Structure) (source As Vector128(Of T), ByRef destination As T, elementOffset As UIntPtr)
Type parameters
- T
Het type van de elementen in de vector.
Parameters
- source
- Vector128<T>
De vector die wordt opgeslagen.
- destination
- T
De bestemming waaraan elementOffset wordt toegevoegd voordat de vector wordt opgeslagen.
- elementOffset
-
UIntPtr
unativeint
Het element wordt verschoven van destination waaruit de vector wordt opgeslagen.
- Kenmerken
Uitzonderingen
Het type source (T) wordt niet ondersteund.