Vector128.StoreUnsafe 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
| 名稱 | Description |
|---|---|
| StoreUnsafe<T>(Vector128<T>, T) |
在指定目的地儲存一個向量。 |
| StoreUnsafe<T>(Vector128<T>, T, UIntPtr) |
在指定目的地儲存一個向量。 |
StoreUnsafe<T>(Vector128<T>, T)
- 來源:
- Vector128.cs
- 來源:
- Vector128.cs
- 來源:
- Vector128.cs
- 來源:
- Vector128.cs
- 來源:
- Vector128.cs
在指定目的地儲存一個向量。
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static void StoreUnsafe(System::Runtime::Intrinsics::Vector128<T> source, T % destination);
public:
generic <typename T>
where T : value class[System::Runtime::CompilerServices::Extension]
static void StoreUnsafe(System::Runtime::Intrinsics::Vector128<T> source, T % destination);
public static void StoreUnsafe<T>(this System.Runtime.Intrinsics.Vector128<T> source, ref T destination);
public static void StoreUnsafe<T>(this System.Runtime.Intrinsics.Vector128<T> source, ref T destination) where T : struct;
static member StoreUnsafe : System.Runtime.Intrinsics.Vector128<'T> * 'T -> unit
static member StoreUnsafe : System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> * 'T -> unit (requires 'T : struct)
<Extension()>
Public Sub StoreUnsafe(Of T) (source As Vector128(Of T), ByRef destination As T)
<Extension()>
Public Sub StoreUnsafe(Of T As Structure) (source As Vector128(Of T), ByRef destination As T)
類型參數
- T
向量中專案的型別。
參數
- source
- Vector128<T>
將被儲存的向量。
- destination
- T
存放的目的地 source 。
例外狀況
不支援()的sourceT類型。
適用於
StoreUnsafe<T>(Vector128<T>, T, UIntPtr)
- 來源:
- Vector128.cs
- 來源:
- Vector128.cs
- 來源:
- Vector128.cs
- 來源:
- Vector128.cs
- 來源:
- Vector128.cs
重要
此 API 不符合 CLS 規範。
在指定目的地儲存一個向量。
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static void StoreUnsafe(System::Runtime::Intrinsics::Vector128<T> source, T % destination, UIntPtr elementOffset);
public:
generic <typename T>
where T : value class[System::Runtime::CompilerServices::Extension]
static void StoreUnsafe(System::Runtime::Intrinsics::Vector128<T> source, T % destination, UIntPtr elementOffset);
[System.CLSCompliant(false)]
public static void StoreUnsafe<T>(this System.Runtime.Intrinsics.Vector128<T> source, ref T destination, UIntPtr elementOffset);
[System.CLSCompliant(false)]
public static void StoreUnsafe<T>(this System.Runtime.Intrinsics.Vector128<T> source, ref T destination, UIntPtr elementOffset) where T : struct;
[<System.CLSCompliant(false)>]
static member StoreUnsafe : System.Runtime.Intrinsics.Vector128<'T> * 'T * unativeint -> unit
[<System.CLSCompliant(false)>]
static member StoreUnsafe : System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> * 'T * unativeint -> unit (requires 'T : struct)
<Extension()>
Public Sub StoreUnsafe(Of T) (source As Vector128(Of T), ByRef destination As T, elementOffset As UIntPtr)
<Extension()>
Public Sub StoreUnsafe(Of T As Structure) (source As Vector128(Of T), ByRef destination As T, elementOffset As UIntPtr)
類型參數
- T
向量中專案的型別。
參數
- source
- Vector128<T>
將被儲存的向量。
- destination
- T
elementOffset目的地會先被加入,然後才會儲存向量。
- elementOffset
-
UIntPtr
unativeint
將來儲存向量的偏移 destination 元素。
- 屬性
例外狀況
不支援()的sourceT類型。