Partilhar via


Vector.StoreUnsafe Método

Definição

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)

Armazena um vetor no destino especificado.

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

Armazena um vetor no 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

Aplica-se 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

Aplica-se 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

Aplica-se a

StoreUnsafe(Vector2, Single, UIntPtr)

Importante

Esta API não está em conformidade com 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

Aplica-se a

StoreUnsafe(Vector3, Single, UIntPtr)

Importante

Esta API não está em conformidade com 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

Aplica-se a

StoreUnsafe(Vector4, Single, UIntPtr)

Importante

Esta API não está em conformidade com 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

Aplica-se a

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

Origem:
Vector.cs
Origem:
Vector.cs

Armazena um vetor no 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

O tipo dos elementos no vetor.

Parâmetros

source
Vector<T>

O vetor que será armazenado.

destination
T

O destino no qual source será armazenado.

Exceções

Não há suporte para o tipo de source (T).

Aplica-se a

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

Origem:
Vector.cs
Origem:
Vector.cs

Importante

Esta API não está em conformidade com CLS.

Armazena um vetor no 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

O tipo dos elementos no vetor.

Parâmetros

source
Vector<T>

O vetor que será armazenado.

destination
T

O destino ao qual elementOffset será adicionado antes que o vetor seja armazenado.

elementOffset
UIntPtr

unativeint

O deslocamento de elemento do destination qual o vetor será armazenado.

Atributos

Exceções

Não há suporte para o tipo de source (T).

Aplica-se a