Freigeben über


Vector.StoreUnsafe Methode

Definition

Überlädt

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)

Parameter

source
Vector2
destination
Single

Gilt für:

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)

Parameter

source
Vector3
destination
Single

Gilt für:

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)

Parameter

source
Vector4
destination
Single

Gilt für:

StoreUnsafe(Vector2, Single, UIntPtr)

Wichtig

Diese API ist nicht CLS-kompatibel.

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)

Parameter

source
Vector2
destination
Single
elementOffset
UIntPtr

unativeint

Attribute

Gilt für:

StoreUnsafe(Vector3, Single, UIntPtr)

Wichtig

Diese API ist nicht CLS-kompatibel.

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)

Parameter

source
Vector3
destination
Single
elementOffset
UIntPtr

unativeint

Attribute

Gilt für:

StoreUnsafe(Vector4, Single, UIntPtr)

Wichtig

Diese API ist nicht CLS-kompatibel.

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)

Parameter

source
Vector4
destination
Single
elementOffset
UIntPtr

unativeint

Attribute

Gilt für:

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

Quelle:
Vector.cs
Quelle:
Vector.cs

Speichert einen Vektor am angegebenen Ziel.

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)

Typparameter

T

Der Typ der Elemente im Vektor.

Parameter

source
Vector<T>

Der gespeicherte Vektor.

destination
T

Das Ziel, an dem source gespeichert wird.

Ausnahmen

Der Typ von source (T) wird nicht unterstützt.

Gilt für:

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

Quelle:
Vector.cs
Quelle:
Vector.cs

Wichtig

Diese API ist nicht CLS-kompatibel.

Speichert einen Vektor am angegebenen Ziel.

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)

Typparameter

T

Der Typ der Elemente im Vektor.

Parameter

source
Vector<T>

Der gespeicherte Vektor.

destination
T

Das Ziel, dem elementOffset der Vektor hinzugefügt wird, bevor der Vektor gespeichert wird.

elementOffset
UIntPtr

unativeint

Der Elementoffset, aus destination dem der Vektor gespeichert wird.

Attribute

Ausnahmen

Der Typ von source (T) wird nicht unterstützt.

Gilt für: