Condividi tramite


Vector.StoreUnsafe Metodo

Definizione

Overload

StoreUnsafe(Vector2, Single)
StoreUnsafe(Vector3, Single)
StoreUnsafe(Vector4, Single)
StoreUnsafe(Vector2, Single, UIntPtr)
StoreUnsafe(Vector3, Single, UIntPtr)
StoreUnsafe(Vector4, Single, UIntPtr)
StoreUnsafe<T>(Vector<T>, T)

Archivia un vettore nella destinazione specificata.

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

Archivia un vettore nella destinazione specificata.

StoreUnsafe(Vector2, Single)

public:
[System::Runtime::CompilerServices::Extension]
 static void StoreUnsafe(System::Numerics::Vector2 source, float % destination);
public static void StoreUnsafe(this System.Numerics.Vector2 source, ref float destination);
static member StoreUnsafe : System.Numerics.Vector2 * single -> unit
<Extension()>
Public Sub StoreUnsafe (source As Vector2, ByRef destination As Single)

Parametri

source
Vector2
destination
Single

Si applica a

StoreUnsafe(Vector3, Single)

public:
[System::Runtime::CompilerServices::Extension]
 static void StoreUnsafe(System::Numerics::Vector3 source, float % destination);
public static void StoreUnsafe(this System.Numerics.Vector3 source, ref float destination);
static member StoreUnsafe : System.Numerics.Vector3 * single -> unit
<Extension()>
Public Sub StoreUnsafe (source As Vector3, ByRef destination As Single)

Parametri

source
Vector3
destination
Single

Si applica a

StoreUnsafe(Vector4, Single)

public:
[System::Runtime::CompilerServices::Extension]
 static void StoreUnsafe(System::Numerics::Vector4 source, float % destination);
public static void StoreUnsafe(this System.Numerics.Vector4 source, ref float destination);
static member StoreUnsafe : System.Numerics.Vector4 * single -> unit
<Extension()>
Public Sub StoreUnsafe (source As Vector4, ByRef destination As Single)

Parametri

source
Vector4
destination
Single

Si applica a

StoreUnsafe(Vector2, Single, UIntPtr)

Importante

Questa API non è conforme a CLS.

public:
[System::Runtime::CompilerServices::Extension]
 static void StoreUnsafe(System::Numerics::Vector2 source, float % destination, UIntPtr elementOffset);
[System.CLSCompliant(false)]
public static void StoreUnsafe(this System.Numerics.Vector2 source, ref float destination, UIntPtr elementOffset);
[<System.CLSCompliant(false)>]
static member StoreUnsafe : System.Numerics.Vector2 * single * unativeint -> unit
<Extension()>
Public Sub StoreUnsafe (source As Vector2, ByRef destination As Single, elementOffset As UIntPtr)

Parametri

source
Vector2
destination
Single
elementOffset
UIntPtr

unativeint

Attributi

Si applica a

StoreUnsafe(Vector3, Single, UIntPtr)

Importante

Questa API non è conforme a CLS.

public:
[System::Runtime::CompilerServices::Extension]
 static void StoreUnsafe(System::Numerics::Vector3 source, float % destination, UIntPtr elementOffset);
[System.CLSCompliant(false)]
public static void StoreUnsafe(this System.Numerics.Vector3 source, ref float destination, UIntPtr elementOffset);
[<System.CLSCompliant(false)>]
static member StoreUnsafe : System.Numerics.Vector3 * single * unativeint -> unit
<Extension()>
Public Sub StoreUnsafe (source As Vector3, ByRef destination As Single, elementOffset As UIntPtr)

Parametri

source
Vector3
destination
Single
elementOffset
UIntPtr

unativeint

Attributi

Si applica a

StoreUnsafe(Vector4, Single, UIntPtr)

Importante

Questa API non è conforme a CLS.

public:
[System::Runtime::CompilerServices::Extension]
 static void StoreUnsafe(System::Numerics::Vector4 source, float % destination, UIntPtr elementOffset);
[System.CLSCompliant(false)]
public static void StoreUnsafe(this System.Numerics.Vector4 source, ref float destination, UIntPtr elementOffset);
[<System.CLSCompliant(false)>]
static member StoreUnsafe : System.Numerics.Vector4 * single * unativeint -> unit
<Extension()>
Public Sub StoreUnsafe (source As Vector4, ByRef destination As Single, elementOffset As UIntPtr)

Parametri

source
Vector4
destination
Single
elementOffset
UIntPtr

unativeint

Attributi

Si applica a

StoreUnsafe<T>(Vector<T>, T)

Origine:
Vector.cs
Origine:
Vector.cs

Archivia un vettore nella destinazione specificata.

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static void StoreUnsafe(System::Numerics::Vector<T> source, T % destination);
public static void StoreUnsafe<T>(this System.Numerics.Vector<T> source, ref T destination);
static member StoreUnsafe : System.Numerics.Vector<'T> * 'T -> unit
<Extension()>
Public Sub StoreUnsafe(Of T) (source As Vector(Of T), ByRef destination As T)

Parametri di tipo

T

Tipo degli elementi nel vettore.

Parametri

source
Vector<T>

Vettore che verrà archiviato.

destination
T

Destinazione in cui source verrà archiviata.

Eccezioni

Il tipo source (T) non è supportato.

Si applica a

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

Origine:
Vector.cs
Origine:
Vector.cs

Importante

Questa API non è conforme a CLS.

Archivia un vettore nella destinazione specificata.

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

Parametri di tipo

T

Tipo degli elementi nel vettore.

Parametri

source
Vector<T>

Vettore che verrà archiviato.

destination
T

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

elementOffset
UIntPtr

unativeint

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

Attributi

Eccezioni

Il tipo source (T) non è supportato.

Si applica a