Vector.StoreUnsafe Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
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) |
Almacena un vector en el destino especificado. |
StoreUnsafe<T>(Vector<T>, T, UIntPtr) |
Almacena un vector en el destino especificado. |
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
).