共用方式為


Vector.StoreAlignedNonTemporal 方法

定義

多載

StoreAlignedNonTemporal(Vector2, Single*)
StoreAlignedNonTemporal(Vector3, Single*)
StoreAlignedNonTemporal(Vector4, Single*)
StoreAlignedNonTemporal<T>(Vector<T>, T*)

將向量儲存在指定的對齊目的地。

StoreAlignedNonTemporal(Vector2, Single*)

重要

此 API 不符合 CLS 規範。

public:
[System::Runtime::CompilerServices::Extension]
 static void StoreAlignedNonTemporal(System::Numerics::Vector2 source, float* destination);
[System.CLSCompliant(false)]
public static void StoreAlignedNonTemporal(this System.Numerics.Vector2 source, float* destination);
[<System.CLSCompliant(false)>]
static member StoreAlignedNonTemporal : System.Numerics.Vector2 * nativeptr<single> -> unit

參數

source
Vector2
destination
Single*
屬性

適用於

StoreAlignedNonTemporal(Vector3, Single*)

重要

此 API 不符合 CLS 規範。

public:
[System::Runtime::CompilerServices::Extension]
 static void StoreAlignedNonTemporal(System::Numerics::Vector3 source, float* destination);
[System.CLSCompliant(false)]
public static void StoreAlignedNonTemporal(this System.Numerics.Vector3 source, float* destination);
[<System.CLSCompliant(false)>]
static member StoreAlignedNonTemporal : System.Numerics.Vector3 * nativeptr<single> -> unit

參數

source
Vector3
destination
Single*
屬性

適用於

StoreAlignedNonTemporal(Vector4, Single*)

重要

此 API 不符合 CLS 規範。

public:
[System::Runtime::CompilerServices::Extension]
 static void StoreAlignedNonTemporal(System::Numerics::Vector4 source, float* destination);
[System.CLSCompliant(false)]
public static void StoreAlignedNonTemporal(this System.Numerics.Vector4 source, float* destination);
[<System.CLSCompliant(false)>]
static member StoreAlignedNonTemporal : System.Numerics.Vector4 * nativeptr<single> -> unit

參數

source
Vector4
destination
Single*
屬性

適用於

StoreAlignedNonTemporal<T>(Vector<T>, T*)

來源:
Vector.cs
來源:
Vector.cs

重要

此 API 不符合 CLS 規範。

將向量儲存在指定的對齊目的地。

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static void StoreAlignedNonTemporal(System::Numerics::Vector<T> source, T* destination);
[System.CLSCompliant(false)]
public static void StoreAlignedNonTemporal<T>(this System.Numerics.Vector<T> source, T* destination);
[<System.CLSCompliant(false)>]
static member StoreAlignedNonTemporal : System.Numerics.Vector<'T> * nativeptr<'T> -> unit

類型參數

T

向量中專案的型別。

參數

source
Vector<T>

將儲存的向量。

destination
T*

要儲存的 source 對齊目的地。

屬性

例外狀況

不支援 source (T) 的類型。

備註

此方法可能會略過特定平臺上的快取。

適用於