Vector.StoreUnsafe 方法

定义

重载

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

在给定目标处存储向量。

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

在给定目标处存储向量。

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

Source:
Vector.cs
Source:
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)

Source:
Vector.cs
Source:
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)。

适用于