次の方法で共有


Vector.StoreUnsafe メソッド

定義

オーバーロード

StoreUnsafe(Vector2, Single)

ソース:
Vector2.Extensions.cs
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)

パラメーター

source
Vector2
destination
Single

適用対象

StoreUnsafe(Vector3, Single)

ソース:
Vector3.Extensions.cs
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)

パラメーター

source
Vector3
destination
Single

適用対象

StoreUnsafe(Vector4, Single)

ソース:
Vector4.Extensions.cs
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)

パラメーター

source
Vector4
destination
Single

適用対象

StoreUnsafe(Vector2, Single, UIntPtr)

ソース:
Vector2.Extensions.cs

重要

この API は 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)

パラメーター

source
Vector2
destination
Single
elementOffset
UIntPtr

unativeint

属性

適用対象

StoreUnsafe(Vector3, Single, UIntPtr)

ソース:
Vector3.Extensions.cs

重要

この API は 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)

パラメーター

source
Vector3
destination
Single
elementOffset
UIntPtr

unativeint

属性

適用対象

StoreUnsafe(Vector4, Single, UIntPtr)

ソース:
Vector4.Extensions.cs

重要

この API は 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)

パラメーター

source
Vector4
destination
Single
elementOffset
UIntPtr

unativeint

属性

適用対象

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

ソース:
Vector.cs
ソース:
Vector.cs
ソース:
Vector.cs

指定した宛先にベクターを格納します。

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)

型パラメーター

T

ベクター内の要素の型。

パラメーター

source
Vector<T>

格納されるベクター。

destination
T

格納先 source

例外

source の型 (T) がサポートされていません。

適用対象

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

ソース:
Vector.cs
ソース:
Vector.cs
ソース:
Vector.cs

重要

この API は CLS 準拠ではありません。

指定した宛先にベクターを格納します。

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)

型パラメーター

T

ベクター内の要素の型。

パラメーター

source
Vector<T>

格納されるベクター。

destination
T

ベクターが格納される前に追加される宛先 elementOffset

elementOffset
UIntPtr

unativeint

ベクターの格納元となる要素オフセット destination

属性

例外

source の型 (T) がサポートされていません。

適用対象