Compartir a través de


Vector.StoreUnsafe Método

Definición

Sobrecargas

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)

Parámetros

source
Vector2
destination
Single

Se aplica 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)

Parámetros

source
Vector3
destination
Single

Se aplica 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)

Parámetros

source
Vector4
destination
Single

Se aplica a

StoreUnsafe(Vector2, Single, UIntPtr)

Importante

Esta API no es 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)

Parámetros

source
Vector2
destination
Single
elementOffset
UIntPtr

unativeint

Atributos

Se aplica a

StoreUnsafe(Vector3, Single, UIntPtr)

Importante

Esta API no es 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)

Parámetros

source
Vector3
destination
Single
elementOffset
UIntPtr

unativeint

Atributos

Se aplica a

StoreUnsafe(Vector4, Single, UIntPtr)

Importante

Esta API no es 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)

Parámetros

source
Vector4
destination
Single
elementOffset
UIntPtr

unativeint

Atributos

Se aplica a

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

Source:
Vector.cs
Source:
Vector.cs

Almacena un vector en el destino especificado.

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)

Parámetros de tipo

T

Tipo de los elementos del vector.

Parámetros

source
Vector<T>

Vector que se almacenará.

destination
T

Destino en el que source se almacenará.

Excepciones

No se admite el tipo de source (T).

Se aplica a

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

Source:
Vector.cs
Source:
Vector.cs

Importante

Esta API no es conforme a CLS.

Almacena un vector en el destino especificado.

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)

Parámetros de tipo

T

Tipo de los elementos del vector.

Parámetros

source
Vector<T>

Vector que se almacenará.

destination
T

Destino al que elementOffset se agregará antes de almacenar el vector.

elementOffset
UIntPtr

unativeint

Desplazamiento del elemento desde destination el que se almacenará el vector.

Atributos

Excepciones

No se admite el tipo de source (T).

Se aplica a